-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathappspec.json
100 lines (100 loc) · 2.29 KB
/
appspec.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"settings": [
{
"id": "server",
"name": "Target server for upload",
"description": "Choose the server for uploading",
"defaultValue": "",
"type": "STRING"
},
{
"id": "api_key",
"name": "EarthRanger API key",
"description": "Provide your EarthRanger API key",
"defaultValue": "",
"type": "STRING"
},
{
"id": "grouping_col",
"name": "Grouping Column",
"description": "Name of the column in the input data for grouping observations that should remain together in the same batch during data upload to EarthRanger. If set to NULL, the data will be split into batches as needed without respecting any groupings",
"defaultValue": null,
"type": "STRING"
},
{
"id": "event_type",
"name": "Event Type",
"description": "Movebank event type",
"defaultValue": "",
"type": "STRING"
},
{
"id": "moveapp_id",
"name": "MoveApp Identifier",
"description": "MoveApp Identfier",
"defaultValue": "",
"type": "STRING"
},
{
"id": "eventlist_fields",
"name": "Fields to Pass to ER",
"description": "If you would like to pass only certain movestack fields, list them here separated by comma or semicolon. Leaving this blank will pass all fields.",
"defaultValue": null,
"type": "STRING"
}
],
"dependencies": {
"R": [
{
"name": "move2"
},
{
"name": "jsonify"
},
{
"name": "httr"
},
{
"name": "sf"
},
{
"name": "units"
},
{
"name": "dplyr"
},
{
"name": "tidyr"
},
{
"name": "purrr"
},
{
"name": "cli"
}
]
},
"license": {
"key": "MIT"
},
"language": "eng",
"keywords": [
"earthranger",
"cluster"
],
"people": [
{
"firstName": "Jes",
"middleInitials": null,
"lastName": "Lefcourt",
"email": "[email protected]",
"roles": ["compiler","author","creator"],
"orcid": "",
"affiliation": "EarthRanger / Allen Institute for Artificial Intelligence",
"affiliationRor": ""
}
],
"documentation" : {
"url": "https://github.com/PADAS/moveapps-integration/blob/main/README.md"
}
}