RPG endpoints
Get Field Info By Geojson
Returns information about multiple fields at once for an Area Of Interest, in GEOJSON EPSG:4326 format
post/rpg/field
Query parameters
year_frominteger
YEAR of the RPG dataset to query - defaults to last year of available dataset
YEAR of the RPG dataset to query - defaults to last year of available dataset
year_tointeger
YEAR of the RPG dataset to query - defaults to last year of available dataset
YEAR of the RPG dataset to query - defaults to last year of available dataset
Request body
object required
EPSG:4326 Geojson FeatureCollection request body
Example request
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
-1.7724573612213135,
48.12528085116867
],
[
-1.7672324180603027,
48.12450023718199
],
[
-1.7669105529785154,
48.12570338039624
],
[
-1.7721140384674072,
48.12641236230751
],
[
-1.7724573612213135,
48.12528085116867
]
]
]
}
}
]
}Response
OK
Example response
{
"crs": {
"properties": {
"name": "EPSG:4326"
},
"type": "name"
},
"features": [
{
"geometry": {
"coordinates": [
[
[
335786.297287427,
6283183.734934869
],
[]
]
],
"type": "Polygon"
},
"properties": {
"year": "2019",
"id_parcel": "8088579",
"surf_parc": 24.08,
"code_cultu": "BTH",
"code_group": "1",
"culture_d1": "DMD",
"culture_d2": "DVS",
"libelle_cultu": "Blé tendre d’hiver",
"libelle_code_group": "Blé tendre",
"libelle_culture_d1": "Moutarde",
"libelle_culture_d2": "Vesce"
},
"type": "Feature"
}
],
"type": "FeatureCollection"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.