Wolfram AgTech | Things to Try

Make edits and run any piece of code by clicking inside the code and pressing
+
.

Access & Analyze Weather Data

Retrieve temperature data for a provided location over a specified temporal range:
Run
In[]:=
min=WeatherData
Champaign
CITY
,"MinTemperature",
Wed 1 Jan 2025
,
Thu 1 Jan 2026
,"Day";​​max=WeatherData
Champaign
CITY
,"MaxTemperature",
Wed 1 Jan 2025
,
Thu 1 Jan 2026
,"Day";
Make a time series plot of the data:
Run
In[]:=
DateListPlot​​{min,max},Joined->True,Filling->{1->{2}},​​PlotLegends->SwatchLegend
,
,{"Min °C","Max °C"}
Out[]=
Min °C
Max °C

Make Maps and Access Remote Sensing Services

Plot a relief map of Illinois:
Run
In[]:=
GeoGraphics
Illinois, United States
ADMINISTRATIVE DIVISION
,GeoBackground->"ReliefMap",GeoZoomLevel->8
Out[]=
Map land cover using ESA data:
In[]:=
GeoGraphics
Illinois, United States
ADMINISTRATIVE DIVISION
,​​GeoServer->
StringTemplate[
]
,GeoZoomLevel->8
Out[]=

Classify Soil Samples

Plot the standard USDA soil texture diagram:
Run
In[]:=
ResourceFunction["SoilTexturePlot"][]
Out[]=
Sand
Clay
Sand
Loamy sand
Sandy loam
Sandy clay loam
Sandy clay
Loam
Clay loam
Silt loam
Silty clay
Silty clay loam
Silt
Visually classify soil sample provided as a list of relative quantities of sand, clay, and silt:
Run
In[]:=
ResourceFunction["SoilTexturePlot"][{(*Sand:*).3,(*Clay:*).3,(*Silt:*).4}]
Out[]=
Sand
Clay
Sand
Loamy sand
Sandy loam
Sandy clay loam
Sandy clay
Loam
Clay loam
Silt loam
Silty clay
Silty clay loam
Silt