Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/DTNClearAg/clearag_api_examples
A collection of code examples using the ClearAg APIs
https://github.com/DTNClearAg/clearag_api_examples
Last synced: 2 months ago
JSON representation
A collection of code examples using the ClearAg APIs
- Host: GitHub
- URL: https://github.com/DTNClearAg/clearag_api_examples
- Owner: DTNClearAg
- Created: 2016-03-22T16:19:06.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-17T20:38:09.000Z (about 6 years ago)
- Last Synced: 2024-05-23T05:28:14.233Z (8 months ago)
- Language: JavaScript
- Homepage: https://www.clearag.com/
- Size: 49.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- -awesome-agriculture - ClearAg-API-Examples - A collection of code examples using the ClearAg APIs. (Data Standardization, Interoperability and APIs)
README
# ClearAg-API-Examples
A collection of code examples using the the [ClearAg APIs](https://clearag.com) seperated by the particular API it uses.
For all examples you will need to use your own API access credentials. All javascript files which use a ClearAg API endpoint should have a `license` global variable near the top of the code.
```javascript
var license = "?app_id=YOUR_ID_HERE&app_key=YOUR_KEY_HERE";
```Or separate APP_ID and APP_KEY sections for Python
```python
APP_ID = 'YOUR_APP_ID_HERE'
APP_KEY = 'YOUR_APP_KEY_HERE'
```