IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

IGN API Géoportail Discussion :

WFS Parcellaire et encodage


Sujet :

IGN API Géoportail

  1. #1
    Futur Membre du Club
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Janvier 2016
    Messages
    8
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Loire Atlantique (Pays de la Loire)

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Janvier 2016
    Messages : 8
    Points : 5
    Points
    5
    Par défaut WFS Parcellaire et encodage
    Bonjour,

    J’effectue une requête WFS en GET pour obtenir les parcelles cadastrales en fonction d'un polygone.
    Je reçois bel et bien une réponse, cependant je me retrouve avec un problème d'encodage que je n'arrive pas à résoudre.

    La réponse XML est la suivante (problème d'encodage sur le nom de la commune):

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    <?xml version="1.0" encoding="UTF-8"?>
    <wfs:FeatureCollection xmlns="http://www.opengis.net/wfs" xmlns:wfs="http://www.opengis.net/wfs" xmlns:gml="http://www.opengis.net/gml" xmlns:BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G="http://wxs.ign.fr/datastore/BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://wxs.ign.fr/datastore/BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G http://wxs.ign.fr/geoportail/wfs?service=WFS&amp;version=1.0.0&amp;request=DescribeFeatureType&amp;typeName=BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G%3Aparcelle http://www.opengis.net/wfs http://wxs.ign.fr/geoportail/schemas/wfs/1.0.0/WFS-basic.xsd">
    	<gml:boundedBy>
    		<gml:null>unknown</gml:null>
    	</gml:boundedBy>
    	<gml:featureMember>
    		<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle fid="parcelle.202504499">
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>0078</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>1</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>AA</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>72</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>Sargé-lès-le-Mans</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>328</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    				<gml:MultiPolygon srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
    					<gml:polygonMember>
    						<gml:Polygon>
    							<gml:outerBoundaryIs>
    								<gml:LinearRing>
    									<gml:coordinates xmlns:gml="http://www.opengis.net/gml" decimal="." cs="," ts=" ">0.2372693,48.0392282 0.2372812,48.0391828 0.2372968,48.0391211 0.2373135,48.0390574 0.2370197,48.039023 0.2369769,48.0391946 0.2372693,48.0392282</gml:coordinates>
    								</gml:LinearRing>
    							</gml:outerBoundaryIs>
    						</gml:Polygon>
    					</gml:polygonMember>
    				</gml:MultiPolygon>
    			</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    		</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle>
    	</gml:featureMember>
    	<gml:featureMember>
    		<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle fid="parcelle.202504501">
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>0091</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>1</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>AA</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>72</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>Sargé-lès-le-Mans</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>328</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    				<gml:MultiPolygon srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
    					<gml:polygonMember>
    						<gml:Polygon>
    							<gml:outerBoundaryIs>
    								<gml:LinearRing>
    									<gml:coordinates xmlns:gml="http://www.opengis.net/gml" decimal="." cs="," ts=" ">0.2369061,48.039461 0.2369485,48.0392935 0.2369972,48.0392705 0.2372089,48.0392947 0.2374566,48.0393245 0.2374775,48.0392908 0.2374941,48.0392594 0.2375271,48.0392383 0.2375295,48.0392295 0.237486,48.0392531 0.2372693,48.0392282 0.2369769,48.0391946 0.2370197,48.039023 0.2369849,48.038931 0.2368271,48.0388343 0.2367991,48.0388544 0.236642,48.0387586 0.2366198,48.0387803 0.2367325,48.0388493 0.2368066,48.0388935 0.2368131,48.0389251 0.236749,48.038984 0.2368986,48.0390735 0.2368573,48.039223 0.2366355,48.0391955 0.2366383,48.0391836 0.2365704,48.0391479 0.2365295,48.0391851 0.2365165,48.039234 0.2366227,48.0392441 0.2366255,48.0392327 0.2368482,48.0392572 0.2368041,48.0394305 0.2368005,48.0394449 0.2367394,48.0395691 0.2367126,48.0395833 0.2365144,48.0395604 0.2365023,48.0396019 0.2365647,48.0397343 0.2366162,48.0397363 0.2368264,48.0396259 0.2369061,48.039461</gml:coordinates>
    								</gml:LinearRing>
    							</gml:outerBoundaryIs>
    						</gml:Polygon>
    					</gml:polygonMember>
    				</gml:MultiPolygon>
    			</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    		</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle>
    	</gml:featureMember>
    	<gml:featureMember>
    		<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle fid="parcelle.202504504">
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>0079</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>1</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>AA</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>72</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>Sargé-lès-le-Mans</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>328</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    				<gml:MultiPolygon srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
    					<gml:polygonMember>
    						<gml:Polygon>
    							<gml:outerBoundaryIs>
    								<gml:LinearRing>
    									<gml:coordinates xmlns:gml="http://www.opengis.net/gml" decimal="." cs="," ts=" ">0.2373135,48.0390574 0.2373546,48.0388983 0.2373365,48.0387568 0.237261,48.0387864 0.237214,48.0388293 0.2369849,48.038931 0.2370197,48.039023 0.2373135,48.0390574</gml:coordinates>
    								</gml:LinearRing>
    							</gml:outerBoundaryIs>
    						</gml:Polygon>
    					</gml:polygonMember>
    				</gml:MultiPolygon>
    			</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    		</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle>
    	</gml:featureMember>
    	<gml:featureMember>
    		<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle fid="parcelle.202504734">
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>0077</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>1</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>AA</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>72</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>Sargé-lès-le-Mans</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>328</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    				<gml:MultiPolygon srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
    					<gml:polygonMember>
    						<gml:Polygon>
    							<gml:outerBoundaryIs>
    								<gml:LinearRing>
    									<gml:coordinates xmlns:gml="http://www.opengis.net/gml" decimal="." cs="," ts=" ">0.2373135,48.0390574 0.2372968,48.0391211 0.2372812,48.0391828 0.2372693,48.0392282 0.237486,48.0392531 0.2375295,48.0392295 0.2375456,48.0391733 0.2375742,48.0390881 0.2373135,48.0390574</gml:coordinates>
    								</gml:LinearRing>
    							</gml:outerBoundaryIs>
    						</gml:Polygon>
    					</gml:polygonMember>
    				</gml:MultiPolygon>
    			</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    		</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle>
    	</gml:featureMember>
    	<gml:featureMember>
    		<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle fid="parcelle.202504736">
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>0080</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:numero>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>1</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:feuille>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>AA</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:section>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>72</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_dep>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>Sargé-lès-le-Mans</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>328</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_com>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:com_abs>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>000</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:code_arr>
    			<BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    				<gml:MultiPolygon srsName="http://www.opengis.net/gml/srs/epsg.xml#4326">
    					<gml:polygonMember>
    						<gml:Polygon>
    							<gml:outerBoundaryIs>
    								<gml:LinearRing>
    									<gml:coordinates xmlns:gml="http://www.opengis.net/gml" decimal="." cs="," ts=" ">0.2373546,48.0388983 0.2373135,48.0390574 0.2375742,48.0390881 0.2376124,48.0389591 0.2376215,48.0389296 0.2376175,48.0389292 0.237575,48.0389241 0.2374554,48.0389101 0.2373546,48.0388983</gml:coordinates>
    								</gml:LinearRing>
    							</gml:outerBoundaryIs>
    						</gml:Polygon>
    					</gml:polygonMember>
    				</gml:MultiPolygon>
    			</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:the_geom>
    		</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle>
    	</gml:featureMember>
    </wfs:FeatureCollection>
    Cordialement.

  2. #2
    Membre habitué
    Homme Profil pro
    Inscrit en
    Février 2010
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Février 2010
    Messages : 141
    Points : 156
    Points
    156
    Par défaut
    La ligne
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <?xml version="1.0" encoding="UTF-8"?>
    indique que le xml est codé en UTF-8 alors que vous devez le lire par exemple en ISO-8859-1.

  3. #3
    Membre confirmé Avatar de lboulanger
    Femme Profil pro
    Développeur Web
    Inscrit en
    Octobre 2014
    Messages
    262
    Détails du profil
    Informations personnelles :
    Sexe : Femme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Octobre 2014
    Messages : 262
    Points : 529
    Points
    529
    Par défaut
    Bonjour,

    Pourriez-vous nous fournir un exemple de requête dont la réponse présente ce problème d'encodage ?

    Est-ce que vous rencontrez systématiquement ce problème d'encodage, ou juste dans certains cas ?

  4. #4
    Membre averti Avatar de lowzonenose
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Mai 2014
    Messages
    196
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val de Marne (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Mai 2014
    Messages : 196
    Points : 407
    Points
    407
    Par défaut
    Je n'arrive pas à reproduire le problème d'encodage

    REQUEST (GET) http://wxs.ign.fr/KEY/geoportail/wfs...elle.202504736
    RESPONSE :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    <?xml version="1.0" encoding="UTF-8"?>
    <wfs:FeatureCollection xmlns="http://www.opengis.net/wfs" xmlns:wfs="http://www.opengis.net/wfs" xmlns:gml="http://www.opengis.net/gml" xmlns:BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G="http://wxs.ign.fr/datastore/BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://wxs.ign.fr/datastore/BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G http://wxs.ign.fr/geoportail/wfs?service=WFS&amp;version=1.0.0&amp;request=DescribeFeatureType&amp;typeName=BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G%3Aparcelle http://www.opengis.net/wfs http://wxs.ign.fr/geoportail/schemas/wfs/1.0.0/WFS-basic.xsd">
    <gml:boundedBy><gml:null>unknown</gml:null></gml:boundedBy>
    <gml:featureMember>
    <BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle fid="parcelle.202504736">
    <BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>Sargé-lès-le-Mans</BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:nom_com>
    </BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle>
    </gml:featureMember>
    </wfs:FeatureCollection>
    Peux tu nous envoyer ta requête ou l’exécuter sous curl ou poster directement sur le service ?

  5. #5
    Membre habitué
    Homme Profil pro
    Inscrit en
    Février 2010
    Messages
    141
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Février 2010
    Messages : 141
    Points : 156
    Points
    156
    Par défaut
    A mon avis la réponse de la requête est correcte en UTF-8 mais elle est mal décodée.

    On peut utiliser Notepad++ pour générer les caractères incorrects :
    - créer un nouveau fichier
    - régler Encodage sur "Encoder en UTF-8"
    - coller "Sargé-lès-le-Mans"
    - modifier Encodage sur "Encoder en ANSI"
    - le texte est modifié en "Sargé-lès-le-Mans"

Discussions similaires

  1. Encodage de caracteres: eviter 81, 8D, 8F, 90, 9D ->
    Par Fladnag dans le forum Entrée/Sortie
    Réponses: 2
    Dernier message: 27/04/2004, 12h17
  2. Encodage de cd en fichier mp3
    Par clovis dans le forum Applications et environnements graphiques
    Réponses: 4
    Dernier message: 08/04/2004, 02h13
  3. [ENCODAGE][JAVA]Afficher correctement des accents
    Par kornelius dans le forum PostgreSQL
    Réponses: 3
    Dernier message: 17/02/2004, 17h37
  4. Encodages DOS et Windows
    Par Aramis dans le forum Langage
    Réponses: 5
    Dernier message: 09/11/2003, 18h55
  5. [VB6] fonction d' encodage URL en VB
    Par jeanseb dans le forum VB 6 et antérieur
    Réponses: 2
    Dernier message: 14/01/2003, 12h16

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo