guillaumh
(Guillaume Hoffmann)
#1
Hi,
when I do a Statistical API request with the following CRS:
http://www.opengis.net/def/crs/OGC/1.3/CRS84
I get an error in the response:
"6": {
"interval": {
"from": "2020-01-31T00:00:00Z",
"to": "2020-02-01T00:00:00Z"
},
"error": {
"type": "EXECUTION_ERROR"
}
But if I use the following (the one present in the API examples), I have no issues:
http://www.opengis.net/def/crs/EPSG/0/32633
Is it a known/confirmed issue?
batic
(Matej Batič)
#2

In general it should work, try also with request-builder
Are you sure the issue is the CRS?
guillaumh
(Guillaume Hoffmann)
#3
Now that you mention it the Request Builder does not even include the “crs” property when I paste my shapefile. The form tells it’s ESPG:4326.
When trying again to do a request without the “crs” propery I also get the same error.
batic
(Matej Batič)
#4
This works for me:
{
"properties": {
"crs": "http://www.opengis.net/def/crs/EPSG/0/4326"
},
"bbox": [
14.483618563568307,
45.97860516108456,
14.509277616786575,
45.99671896868505
]
}
Notice the use of EPSG:4326 in the crs property.