첫 번째 단계는 data-platform 페이지에서 토큰을 얻는 것입니다.
자신만의 토큰이 있으면 다음 스크립트를 사용하여 데이터를 업로드할 수 있습니다. 첫 번째 스테이션 데이터를 업로드한 후 aqicn.org/data-feed/verification/으로 이동하여 스테이션을 구성하고 업로드된 데이터를 확인하세요.
지원되는 소프트웨어 플랫폼:
우리는 다음 3가지 플랫폼에 바로 사용할 수 있는 소프트웨어를 제공합니다.
- Arduino: Arduino CPU가 있는 경우 github.com(aqicn/gaia-a08-arduino.
- Python: 아래 코드 스니펫 사용
- 명령줄(CURL): 아래 코드 스니펫 사용
모니터링 스테이션이 없고 하나 구입하고 싶다면 GAIA 대기 질 모니터링 스테이션을 확인하세요.
DIY 스테이션을 선호한다면 GAIA A08을 확인하세요.
--
샘플 코드(파이썬)
import requests
# Sensor parameter
sensorReadings = [
{'specie':'pm25', 'value': 393.3},
{'specie':'pm10', 'value': 109.3}
]
# Station parameter
station = {
'id': "station-001",
'location': {
'latitude': 28.7501,
'longitude': 77.1177
}
}
# User parameter - get yours from https://aqicn.org/data-platform/token/
userToken = "dummy-token-for-test-purpose-only"
# Then Upload the data
params = {'station':station,'readings':sensorReadings,'token':userToken}
request = requests.post( url = "https://aqicn.org/sensor/upload/", json = params)
#print(request.text)
data = request.json()
if data["status"]!="ok":
print("Something went wrong: %s" % data)
else:
print("Data successfully posted: %s"%data)
샘플 코드(컬)
curl -X POST https://aqicn.org/sensor/upload -H 'Content-Type: application/json' --data '{\
"token": "dummy-token-for-test-purpose-only",\
"station": { "id": "station-001" },\
"readings": [{"specie":"pm2.5", "value": 393.3}]\
}'
샘플 코드(아두이노)
#include <WiFi.h>
#include <HTTPClient.h>
#include <ArduinoJson.h>
#define LATITUDE 28.7501
#define LONGITUDE 77.1177
void upload(float pm25_concentration, float pm10_concentration, const char * token)
{
static char stationID[32];
uint64_t efuseMac = ESP.getEfuseMac();
uint16_t chip = (uint16_t)(efuseMac >> 32);
snprintf(stationID, 32, "station-%x", chip);
doc["token"] = token;
doc["station"]["id"] = stationID;
doc["station"]["location"]["latitude"] = LATITUDE;
doc["station"]["location"]["longitude"] = LONGITUDE;
doc["readings"][0]["specie"] = "pm25";
doc["readings"][0]["value"] = pm25_concentration;
doc["readings"][0]["unit"] = "µg/m3";
doc["readings"][1]["specie"] = "pm10";
doc["readings"][1]["value"] = pm10_concentration;
doc["readings"][1]["unit"] = "µg/m3";
static char json_body[1024];
serializeJson(doc, json_body);
HTTPClient http;
http.begin("https://aqicn.org/sensor/upload");
http.addHeader("Content-Type", "application/json");
int httpResponseCode = http.POST(json_body);
if (httpResponseCode > 0)
{
String response = http.getString();
Serial.println(httpResponseCode);
Serial.println(response);
}
else
{
Serial.print("Error on sending POST: ");
Serial.println(httpResponseCode);
}
http.end();
}