Example C# client using FarmMaps API to create taskmaps
 
 
Go to file
Pepijn van Oort f8a412be64 with doDB clearer choice on whether to read fields for which to download satellite stats from csv or database 2022-03-07 13:36:20 +01:00
FarmMapsBlight Updated receiving of root items 2022-02-28 14:29:56 +01:00
FarmmapsApi Updated receiving of root items 2022-02-28 14:29:56 +01:00
FarmmapsBulkSatDownload with doDB clearer choice on whether to read fields for which to download satellite stats from csv or database 2022-03-07 13:36:20 +01:00
FarmmapsCleanUp new project FarmmapsCleanUp to clean up cropfielditems and satellitetaskcodes used only once 2021-06-07 16:38:42 +02:00
FarmmapsDataDownload Updated receiving of root items 2022-02-28 14:29:56 +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.