GET v2/soil-web.{ext}?lat={lat}&lng={lng}
A simple call that retrieves soil web data, given coordinates. This call is intended to be used with single call web API which requires soil properties. Warning: This is restricted to registered 3rd party applications to prevent abuse.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
lat | string |
Required |
|
lng | string |
Required |
Body Parameters
None.
Response Information
Resource Description
SoilWebSimpleModelName | Description | Type | Additional information |
---|---|---|---|
Name | string |
None. |
|
Series | string |
None. |
|
Texture | string |
None. |
|
Properties | SoilWebSimplePropertiesModel |
None. |
Response Formats
application/json, text/json, text/html
Sample:
{ "Name": "sample string 1", "Series": "sample string 2", "Texture": "sample string 3", "Properties": { "Clay": [ 1.0, 1.0 ], "Sand": [ 1.0, 1.0 ], "Silt": [ 1.0, 1.0 ], "Organic": [ 1.0, 1.0 ], "Density": [ 1.0, 1.0 ], "SatTension": [ 1.0, 1.0 ], "Mineralization": [ 1.0, 1.0 ] } }
application/xml, text/xml
Sample:
<SoilWebSimpleModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Name>sample string 1</Name> <Series>sample string 2</Series> <Texture>sample string 3</Texture> <Properties> <Clay> <decimal>1</decimal> <decimal>1</decimal> </Clay> <Sand> <decimal>1</decimal> <decimal>1</decimal> </Sand> <Silt> <decimal>1</decimal> <decimal>1</decimal> </Silt> <Organic> <decimal>1</decimal> <decimal>1</decimal> </Organic> <Density> <decimal>1</decimal> <decimal>1</decimal> </Density> <SatTension> <decimal>1</decimal> <decimal>1</decimal> </SatTension> <Mineralization> <decimal>1</decimal> <decimal>1</decimal> </Mineralization> </Properties> </SoilWebSimpleModel>