Example C# client using FarmMaps API to create taskmaps
 
 
Go to file
Mark van der Wal 788c071739 Merge remote-tracking branch 'remote/master' 2023-11-02 12:00:12 +01:00
FarmMapsBlight Updated receiving of root items 2022-02-28 14:29:56 +01:00
FarmmapsApi Merge remote-tracking branch 'remote/master' 2023-11-02 12:00:12 +01:00
FarmmapsBulkSatDownload added a comment about failed test to download stats for multi-annual timeseries for a given field 2023-08-01 15:22:20 +02:00
FarmmapsCleanUp new project FarmmapsCleanUp to clean up cropfielditems and satellitetaskcodes used only once 2021-06-07 16:38:42 +02:00
FarmmapsDataDownload update DataDownloadApplication 2022-03-11 15:10:33 +01:00
FarmmapsHaulmkilling Updated receiving of root items 2022-02-28 14:29:56 +01:00
FarmmapsHerbicide Updated receiving of root items 2022-02-28 14:29:56 +01:00
FarmmapsNbs Updated receiving of root items 2022-02-28 14:29:56 +01:00
FarmmapsPoten Updated receiving of root items 2022-02-28 14:29:56 +01:00
FarmmapsZonering Updated receiving of root items 2022-02-28 14:29:56 +01:00
Secrets added download of all crop recordings of 1 field - using a manual croprecording itemcode 2022-02-28 13:28:24 +00:00
.gitignore Projects FarmmapsBulkSatDownload and FarmmapsDataDownload fully updated and tested 2021-05-26 10:16:29 +02:00
FarmmapsApiSamples.sln new project FarmmapsCleanUp to clean up cropfielditems and satellitetaskcodes used only once 2021-06-07 16:38:42 +02:00
README.MD Update 'README.MD' 2022-02-28 13:50:44 +00:00

README.MD

NOT PRODUCTION READY CODE, JUST AN EXAMPLE

Put your clientId and clientSecret or your Farmmaps-account data (username and password) in a newly created appsettings.secrets.json file inside the root of the Secrets project.

appsettings.secrets.json

{
  //API credential sign-in
  "ClientId": "<clientId>",
  "ClientSecret": "<clientSecret>"
}

Or when using a Farmmaps account to sing-in

appsettings.secrets.json

{
 //Sign-in using farmmaps account
 "Username": "",
 "Password": ""
}
  • Isn't 100% complete.
  • Needs proper testing of all public api methods.
  • Needs documentation of all public api methods.