|
Hi there and thanks for this really useful api !
i noticed two little issues
1) there is a little error in the documentation here:
http://www.undata-api.org/wiki/filteredquery
the query accepts only
http://undata-api.appspot.com/data/query/{dataset name1}/{country3}/{year2}
and not
http://undata-api.appspot.com/data/query/{dataset name1}/{year2}/{country3}
2) also, i don’t know why, every record is doubled on this kind of query:
http://undata-api.appspot.com/data/query/Population%20annual%20growth%20rate%20%28percent%29/any/2000?user_key=xxx
or
http://undata-api.appspot.com/data/query/Population%20annual%20growth%20rate%20%28percent%29/France?user_key=xxx
Answers look like this, every year appears twice, maybe the data is half-yearly ?
<record>
<field name="Country or Area">France</field>
<field name="Year(s)">1990</field>
<field name="Value">0.5</field>
</record>
−
<record>
<field name="Country or Area">France</field>
<field name="Year(s)">1990</field>
<field name="Value">0.5</field>
</record>
−
<record>
<field name="Country or Area">France</field>
<field name="Year(s)">1991</field>
<field name="Value">0.5</field>
</record>
−
<record>
<field name="Country or Area">France</field>
<field name="Year(s)">1991</field>
<field name="Value">0.5</field>
</record>
thank you
|