

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE rdf:RDF[
	<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
	<!ENTITY rdfs 'http://www.w3.org/2000/01/rdf-schema#'>
	<!ENTITY owl 'http://www.w3.org/2002/07/owl#'>
	<!ENTITY swivt 'http://semantic-mediawiki.org/swivt/1.0#'>
	<!ENTITY wiki 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/'>
	<!ENTITY category 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3A'>
	<!ENTITY property 'http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3A'>
	<!ENTITY wikiurl 'https://www.wikidebrouillard.org/wiki/'>
]>

<rdf:RDF
	xmlns:rdf="&rdf;"
	xmlns:rdfs="&rdfs;"
	xmlns:owl ="&owl;"
	xmlns:swivt="&swivt;"
	xmlns:wiki="&wiki;"
	xmlns:category="&category;"
	xmlns:property="&property;">

	<owl:Ontology rdf:about="https://www.wikidebrouillard.org/wiki/Special:ExportRDF/POCL_Neige_en_station">
		<swivt:creationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2026-05-02T12:51:36+02:00</swivt:creationDate>
		<owl:imports rdf:resource="http://semantic-mediawiki.org/swivt/1.0"/>
	</owl:Ontology>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station">
		<rdf:type rdf:resource="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3ATutorials"/>
		<rdf:type rdf:resource="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3APages_avec_des_erreurs_de_coloration_syntaxique"/>
		<rdfs:label>POCL Neige en station</rdfs:label>
		<rdfs:isDefinedBy rdf:resource="https://www.wikidebrouillard.org/wiki/Special:ExportRDF/POCL_Neige_en_station"/>
		<swivt:page rdf:resource="https://www.wikidebrouillard.org/wiki/POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<swivt:wikiPageContentLanguage rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fr</swivt:wikiPageContentLanguage>
		<property:Complete rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Draft</property:Complete>
		<property:Description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Création d’un petit objet connecté qui va chercher la météo sur internet et indique en temps réel s’il neige dans ta station de ski préférée.</property:Description>
		<property:Difficulty rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Technical</property:Difficulty>
		<property:Disciplines_scientifiques rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Arduino</property:Disciplines_scientifiques>
		<property:Duration rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2</property:Duration>
		<property:Duration-2Dtype rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hour(s)</property:Duration-2Dtype>
		<property:Item rdf:resource="&wiki;Câble_Dupont"/>
		<property:Item rdf:resource="&wiki;Carton"/>
		<property:Item rdf:resource="&wiki;Ruban_de_Led_-2D_WS2812B"/>
		<property:Item rdf:resource="&wiki;Découpeuse_laser"/>
		<property:Item rdf:resource="&wiki;ESP32"/>
		<property:Item rdf:resource="&wiki;Peinture_acrylique"/>
		<property:Item rdf:resource="&wiki;PMMA"/>
		<property:Licences rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Attribution (CC-BY)</property:Licences>
		<property:Main_Picture rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL_Neige_en_station_1000000223.jpg</property:Main_Picture>
		<property:Notes rdf:datatype="http://www.w3.org/2001/XMLSchema#string">&lt;nowiki&gt;&lt;div class="mw-highlight mw-content-ltr" dir="ltr"&gt;&lt;pre&gt;# Programme boot.py :&lt;br /&gt;&lt;br /&gt;from machine import Pin&lt;br /&gt;import time&lt;br /&gt;try:&lt;br /&gt;  import urequests as requests&lt;br /&gt;except:&lt;br /&gt;  import requests&lt;br /&gt;try:&lt;br /&gt;  import ujson as json&lt;br /&gt;except:&lt;br /&gt;  import json&lt;br /&gt;import network&lt;br /&gt;import neopixel&lt;br /&gt;import esp&lt;br /&gt;esp.osdebug(None)&lt;br /&gt;import gc&lt;br /&gt;gc.collect()&lt;br /&gt;&lt;br /&gt;ssid = 'Nom_Wifi'&lt;br /&gt;password = 'Mot_de_passe_wifi'&lt;br /&gt;valeur_main = None&lt;br /&gt;&lt;br /&gt;NB_LED = 2&lt;br /&gt;np=neopixel.NeoPixel(Pin(15),NB_LED)&lt;br /&gt;np[0] = (10, 0, 0)&lt;br /&gt;np.write()&lt;br /&gt;&lt;br /&gt;bleu = (248, 248, 255)&lt;br /&gt;noir = (0, 0, 0)&lt;br /&gt;rouge = (255, 0, 0)&lt;br /&gt;  &lt;br /&gt;def allumer_couleur(couleur):&lt;br /&gt;    for i in range(NB_LED):&lt;br /&gt;        np[i]=couleur&lt;br /&gt;    np.write()&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;station = network.WLAN(network.STA_IF)&lt;br /&gt;# se connecte&lt;br /&gt;station.active(True)&lt;br /&gt;station.connect(ssid, password)&lt;br /&gt;&lt;br /&gt;while not station.isconnected() :&lt;br /&gt;    allumer_couleur(rouge)&lt;br /&gt;    time.sleep(1)&lt;br /&gt;    print('Non connecté')&lt;br /&gt;&lt;br /&gt;print('Connection successful')&lt;br /&gt;#écrit les configurations de la connection&lt;br /&gt;#print(station.ifconfig())&lt;br /&gt;&lt;br /&gt;#Ville : Station Autrans 45°13'49.1"N 5°34'55.9"E&lt;br /&gt;lat = '45.2302778'&lt;br /&gt;long = '5.58194'&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;# Récupération données&lt;br /&gt;api_key = '1e3c7b8ac112252a6250d681373bc7ed'&lt;br /&gt;#https://api.openweathermap.org/data/2.5/weather?lat=44.866669&amp;lon=-0.61667&amp;appid=1e3c7b8ac112252a6250d681373bc7ed&lt;br /&gt;weather_url = 'https://api.openweathermap.org/data/2.5/weather?lat=' + lat + '&amp;lon=' + long + '&amp;appid=' + api_key&lt;br /&gt;#va chercher main dans la première case du tableau weather&lt;br /&gt;json_path = ['weather', 0, 'main'] &lt;br /&gt;&lt;br /&gt;# Weather Description&lt;br /&gt;#weather = extract_Weather(json_path, weather_url)&lt;br /&gt;#description = 'Description: ' + weather&lt;br /&gt;#print(description)&lt;br /&gt;&lt;br /&gt;#Programme main.py :&lt;br /&gt;&lt;br /&gt;def extract_Weather(list, url) :&lt;br /&gt;    weather_data = requests.get(url)&lt;br /&gt;    #print(weather_data.json())&lt;br /&gt;    #transforme tout le json en dictionnaire&lt;br /&gt;    data = json.loads(weather_data.text)&lt;br /&gt;    # pour n qui parcourt chaque élément de list soit json_path dans le code avec n qui prendra main puis pressure&lt;br /&gt;    for n in list:&lt;br /&gt;        if(n != ""):&lt;br /&gt;            data = data[n]&lt;br /&gt;    return str(data)&lt;br /&gt;&lt;br /&gt;valeur_main = extract_Weather(json_path, weather_url)&lt;br /&gt;print("Temps actuel : " + valeur_main)&lt;br /&gt;if valeur_main == "Snow":&lt;br /&gt;    print("ca marche")&lt;br /&gt;    allumer_couleur(bleu)&lt;br /&gt;else :&lt;br /&gt;    allumer_couleur(noir)&lt;br /&gt;time.sleep(7)&lt;/pre&gt;&lt;/div&gt;&lt;/nowiki&gt;</property:Notes>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Il faudra également de la peinture noire, orange, un pinceau et de la colle à bois.</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">&lt;nowiki&gt;⚠️ Attention, ton ESP32 doit avoir été flashé avec micropython !&lt;br /&gt;&lt;br /&gt;Tutoriel pour le faire : [[Installation de micropython]]&lt;br /&gt;&lt;br /&gt;ou directement&lt;br /&gt;&lt;br /&gt;⚠️ Cela fonctionne uniquement sur Google Chrome et Microsoft Edge.&lt;br /&gt;&lt;br /&gt;Rendez-vous en bas de la page d'accueil :&lt;br /&gt;&lt;br /&gt;https://dblocadata.debrouillonet.org/~test/#flash&lt;/nowiki&gt;</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Si vous utilisez un bandeau led :

Séparer 3 leds en découpant le ruban.

Les souder entre elles avec des fils en respectant les bornes et les flèches.

L'objectif est de les éloigner pour disposer une led derrière chaque œil et le ventre.


Raccorder l'ensemble de leds à l'ESP 32 :

La borne GND des leds vers une des bornes GND de l'ESP32

La borne 5V des leds vers la borne VIN

La borne DIN des leds vers la borne 15 de l'ESP32 (voir programme informatique)

&lt;br/&gt;</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Télécharger le logiciel Thonny.


Raccorder l'ESP 32 à un ordinateur.


Ouvrir Thonny et sélectionner l'ESP 32 avec son port si besoin.


Créer deux fichiers : boot.py et main.py

Copier dedans les codes présents plus bas dans sources et ressources.


Modifier les fichiers :

boot.py

&gt; modifier le nom du wifi et son mot de passe (mettre un wifi accessible pour le POCL sans portail captif)

&gt; modifier les coordonnées géographiques de votre station</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Lancer le programme.

Dans le terminal, les tentatives de connexions s'affichent puis la météo récupérée est affichée.

Le bandeau led clignote en rouge puis :

- s'éteint si il ne neige pas

- s'allume en bleu si il neige

- s'allume en rouge si la connexion internet n'est pas établie</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Avec la découpeuse laser :

- découper les skis (fichier joint) dans le contre plaqué peuplier

- découper le pingouin (fichier joint) dans le carton bois

- découper le ventre et les yeux (fichier joint) dans le plexiglass


Peindre en noir le carton bois</property:Step_Content>
		<property:Step_Content rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Positionner les LEDs sur la tranche prévue à cet effet à l'aide de double face.

Ajuster le positionnement des leds en empilant une section de pingouin plus petite et la face avant.


Coller les tranches de pingouin entre elles avec de la colle à bois en alignant le bas. Attention à garder les deux sections à l'arrière séparées. Les coller entre elles. (Ouverture du pingouin par l'arrière.)


Peindre le pingouin en noir.


Positionner (en forçant légèrement) le plexiglass dans la face avant du pingouin pour les yeux et le ventre.


Coller le pingouin sur les skis. Coller le nez et les ailes découpées dans la mousse EVA et peintes en orange pour le nez et en noir pour les ailes.


Mettre la carte ESP32 à l'intérieur. Vérifier la connexion telle que vue en haut ( GND, VN, port 15). Vérifier l'absence de contact électrique entre la carte et leds. refermer l'arrière. Maintenir fermé avec un ruban (écharpe).

Raccorder le câble USB C à un ordinateur ou une prise.</property:Step_Content>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Réunir le matériel</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Préparer l'ESP 32</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Raccorder la bande de LED à l'esp32</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Utiliser Thonny pour déposer les programmes sur l'ESP32</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Tester le programme</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Découper l'objet</property:Step_Title>
		<property:Step_Title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Assembler l'objet et l'électronique</property:Step_Title>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ESP32</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Open Data</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Découpeuse laser</property:Tags>
		<property:Tags rdf:datatype="http://www.w3.org/2001/XMLSchema#string">IOT</property:Tags>
		<property:Has_query rdf:resource="&wiki;POCL_Neige_en_station-23_QUERYaed63e1f6214d19eb561ba1eae2257ca"/>
		<property:Has_query rdf:resource="&wiki;POCL_Neige_en_station-23_QUERY507fb2b018515567fc3b9bb7b3eb7928"/>
		<property:Has_query rdf:resource="&wiki;POCL_Neige_en_station-23_QUERY83e010979cf65ffab952e1675c03b247"/>
		<property:Has_query rdf:resource="&wiki;POCL_Neige_en_station-23_QUERY4411759db49d23165aecb2c6e65d37bd"/>
		<property:Has_query rdf:resource="&wiki;POCL_Neige_en_station-23_QUERYb439757918a3a5a1df3f82db9c2ddb1e"/>
		<property:Has_query rdf:resource="&wiki;POCL_Neige_en_station-23_QUERY99b6df09d71b16ee442e7ae8997cb560"/>
		<property:Has_query rdf:resource="&wiki;POCL_Neige_en_station-23_QUERY9f16b709ca664afc0efb3d4ef5e57b0b"/>
		<swivt:wikiPageModificationDate rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2025-12-10T14:13:14Z</swivt:wikiPageModificationDate>
		<property:Modification_date-23aux rdf:datatype="http://www.w3.org/2001/XMLSchema#double">2461020.0925232</property:Modification_date-23aux>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station</swivt:wikiPageSortKey>
		<property:Comments rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Comments>
		<property:Page_creator rdf:resource="&wiki;Utilisateur-3ACarolineCO"/>
		<property:I_did_it rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:I_did_it>
		<property:Favorites rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Favorites>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station-23_QUERYaed63e1f6214d19eb561ba1eae2257ca">
		<swivt:masterPage rdf:resource="&wiki;POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:ESP32]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station# QUERYaed63e1f6214d19eb561ba1eae2257ca</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station-23_QUERY507fb2b018515567fc3b9bb7b3eb7928">
		<swivt:masterPage rdf:resource="&wiki;POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Câble Dupont]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station# QUERY507fb2b018515567fc3b9bb7b3eb7928</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station-23_QUERY83e010979cf65ffab952e1675c03b247">
		<swivt:masterPage rdf:resource="&wiki;POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Carton]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station# QUERY83e010979cf65ffab952e1675c03b247</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station-23_QUERY4411759db49d23165aecb2c6e65d37bd">
		<swivt:masterPage rdf:resource="&wiki;POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Découpeuse laser]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station# QUERY4411759db49d23165aecb2c6e65d37bd</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station-23_QUERYb439757918a3a5a1df3f82db9c2ddb1e">
		<swivt:masterPage rdf:resource="&wiki;POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Peinture acrylique]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station# QUERYb439757918a3a5a1df3f82db9c2ddb1e</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station-23_QUERY99b6df09d71b16ee442e7ae8997cb560">
		<swivt:masterPage rdf:resource="&wiki;POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:Ruban de Led - WS2812B]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station# QUERY99b6df09d71b16ee442e7ae8997cb560</swivt:wikiPageSortKey>
	</swivt:Subject>
	<swivt:Subject rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/POCL_Neige_en_station-23_QUERY9f16b709ca664afc0efb3d4ef5e57b0b">
		<swivt:masterPage rdf:resource="&wiki;POCL_Neige_en_station"/>
		<swivt:wikiNamespace rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</swivt:wikiNamespace>
		<property:Query_depth rdf:datatype="http://www.w3.org/2001/XMLSchema#double">0</property:Query_depth>
		<property:Query_format rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plainlist</property:Query_format>
		<property:Query_size rdf:datatype="http://www.w3.org/2001/XMLSchema#double">1</property:Query_size>
		<property:Query_string rdf:datatype="http://www.w3.org/2001/XMLSchema#string">[[:Item:PMMA]]</property:Query_string>
		<swivt:wikiPageSortKey rdf:datatype="http://www.w3.org/2001/XMLSchema#string">POCL Neige en station# QUERY9f16b709ca664afc0efb3d4ef5e57b0b</swivt:wikiPageSortKey>
	</swivt:Subject>
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#creationDate" />
	<owl:Class rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3ATutorials" />
	<owl:Class rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Category-3APages_avec_des_erreurs_de_coloration_syntaxique" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#page" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiNamespace" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageContentLanguage" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComplete" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADescription" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADifficulty" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADisciplines_scientifiques" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ADuration-2Dtype" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AItem" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ALicences" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AMain_Picture" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ANotes" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AStep_Content" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AStep_Title" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3ATags" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AHas_query" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageModificationDate" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AModification_date-23aux" />
	<owl:DatatypeProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#wikiPageSortKey" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AComments" />
	<owl:ObjectProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3APage_creator" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AI_did_it" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AFavorites" />
	<owl:ObjectProperty rdf:about="http://semantic-mediawiki.org/swivt/1.0#masterPage" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_depth" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_format" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_size" />
	<owl:DatatypeProperty rdf:about="http://https://www.wikidebrouillard.org/wiki/Special:URIResolver/Property-3AQuery_string" />
	<!-- Created by Semantic MediaWiki, https://www.semantic-mediawiki.org/ -->
</rdf:RDF>