After some tests on api, we noticed that the service seems to have a limit on the number of payload elements, whatever parameter you use.
for example:
# 20 years
wget -O test.json "http://webservices.ingv.it/eidaws/wfcatalog/1/query?network=IV&sta=ACER&start=2004-01-01&end=2024-01-07"
return: 19646
# 5 years
wget -O test.json "http://webservices.ingv.it/eidaws/wfcatalog/1/query?network=IV&sta=ACER&start=2010-01-01&end=2015-01-07"
return: 19646
So at this point we assume that we have some limitation on the node-js webservice code.
what should we do? insert an error code into the response (something like "error exceeded query limit") or modify the node-js code?
thanks in advance.
After some tests on api, we noticed that the service seems to have a limit on the number of payload elements, whatever parameter you use.
for example:
So at this point we assume that we have some limitation on the node-js webservice code.
what should we do? insert an error code into the response (something like "error exceeded query limit") or modify the node-js code?
thanks in advance.