-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathzenodo_software_processed.json
More file actions
1069 lines (1069 loc) · 43.3 KB
/
zenodo_software_processed.json
File metadata and controls
1069 lines (1069 loc) · 43.3 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"created": "2025-04-07T16:44:06.178871+00:00",
"modified": "2025-04-07T16:44:06.299944+00:00",
"id": 15169273,
"conceptrecid": "3370004",
"doi": "10.5281/zenodo.15169273",
"conceptdoi": "10.5281/zenodo.3370004",
"doi_url": "https://doi.org/10.5281/zenodo.15169273",
"metadata": {
"title": "bioRad: Biological Analysis and Visualization of Weather Radar Data",
"doi": "10.5281/zenodo.15169273",
"publication_date": "2025-04-07",
"description": "Extract, visualize and summarize aerial movements of birds and insects from weather radar data. See Dokter, A. M. et al. (2018) \"bioRad: biological analysis and visualization of weather radar data\" for a software paper describing package and methodologies.",
"access_right": "open",
"creators": [
{
"name": "Dokter, Adriaan M.",
"affiliation": null,
"orcid": "0000-0001-6573-066X"
},
{
"name": "Desmet, Peter",
"affiliation": null,
"orcid": "0000-0002-8442-8025"
},
{
"name": "Kranstauber, Bart",
"affiliation": null,
"orcid": "0000-0001-8303-780X"
},
{
"name": "Nilsson, Cecilia",
"affiliation": null,
"orcid": "0000-0001-8957-4411"
},
{
"name": "Van Hoey, Stijn",
"affiliation": null,
"orcid": "0000-0001-6413-3185"
}
],
"keywords": [
"aeroecology",
"enram",
"eumetnet-opera",
"lifewatch",
"movement-ecology",
"nexrad",
"oscibio",
"package",
"r",
"radar",
"weather-radar",
"wsr-88d"
],
"related_identifiers": [
{
"identifier": "https://github.com/adokter/bioRad/tree/0.9.1",
"relation": "isSupplementTo",
"resource_type": "software",
"scheme": "url"
}
],
"version": "0.9.1",
"custom": {
"code:codeRepository": "https://github.com/adokter/bioRad"
},
"resource_type": {
"title": "Software",
"type": "software"
},
"license": {
"id": "mit-license"
},
"communities": [
{
"id": "aloft"
}
],
"relations": {
"version": [
{
"index": 15,
"is_last": true,
"parent": {
"pid_type": "recid",
"pid_value": "3370004"
}
}
]
},
"notes": "To cite package \"bioRad\" in publications use:"
},
"title": "bioRad: Biological Analysis and Visualization of Weather Radar Data",
"links": {
"self": "https://zenodo.org/api/records/15169273",
"self_html": "https://zenodo.org/records/15169273",
"preview_html": "https://zenodo.org/records/15169273?preview=1",
"doi": "https://doi.org/10.5281/zenodo.15169273",
"self_doi": "https://doi.org/10.5281/zenodo.15169273",
"self_doi_html": "https://zenodo.org/doi/10.5281/zenodo.15169273",
"reserve_doi": "https://zenodo.org/api/records/15169273/draft/pids/doi",
"parent": "https://zenodo.org/api/records/3370004",
"parent_html": "https://zenodo.org/records/3370004",
"parent_doi": "https://doi.org/10.5281/zenodo.3370004",
"parent_doi_html": "https://zenodo.org/doi/10.5281/zenodo.3370004",
"self_iiif_manifest": "https://zenodo.org/api/iiif/record:15169273/manifest",
"self_iiif_sequence": "https://zenodo.org/api/iiif/record:15169273/sequence/default",
"files": "https://zenodo.org/api/records/15169273/files",
"media_files": "https://zenodo.org/api/records/15169273/media-files",
"archive": "https://zenodo.org/api/records/15169273/files-archive",
"archive_media": "https://zenodo.org/api/records/15169273/media-files-archive",
"latest": "https://zenodo.org/api/records/15169273/versions/latest",
"latest_html": "https://zenodo.org/records/15169273/latest",
"versions": "https://zenodo.org/api/records/15169273/versions",
"draft": "https://zenodo.org/api/records/15169273/draft",
"access_links": "https://zenodo.org/api/records/15169273/access/links",
"access_grants": "https://zenodo.org/api/records/15169273/access/grants",
"access_users": "https://zenodo.org/api/records/15169273/access/users",
"access_request": "https://zenodo.org/api/records/15169273/access/request",
"access": "https://zenodo.org/api/records/15169273/access",
"communities": "https://zenodo.org/api/records/15169273/communities",
"communities-suggestions": "https://zenodo.org/api/records/15169273/communities-suggestions",
"requests": "https://zenodo.org/api/records/15169273/requests"
},
"updated": "2025-04-07T16:44:06.299944+00:00",
"recid": "15169273",
"revision": 4,
"files": [
{
"id": "8a08bd4f-ad34-4a6c-b081-3689d060f7c4",
"key": "adokter/bioRad-0.9.1.zip",
"size": 4932474,
"checksum": "md5:cb1b9135b2ff7f96feda5e9642d6bb1f",
"links": {
"self": "https://zenodo.org/api/records/15169273/files/adokter/bioRad-0.9.1.zip/content"
}
}
],
"swh": {
"swhid": "swh:1:dir:e9991d45724efbc878f3789f992849b207faa63f;origin=https://doi.org/10.5281/zenodo.3370004;visit=swh:1:snp:036f0f427e7bbd3a998e0c9e28e8c1709d536753;anchor=swh:1:rel:71aeae35d9977cba88954ea052124ea3660e973d;path=adokter-bioRad-0c017fe"
},
"owners": [
{
"id": "74718"
}
],
"status": "published",
"stats": {
"downloads": 126,
"unique_downloads": 123,
"views": 2474,
"unique_views": 2400,
"version_downloads": 14,
"version_unique_downloads": 14,
"version_unique_views": 30,
"version_views": 31
},
"state": "done",
"submitted": true
},
{
"created": "2025-03-28T15:05:52.039862+00:00",
"modified": "2025-03-28T15:05:52.236301+00:00",
"id": 15102246,
"conceptrecid": "7992026",
"doi": "10.5281/zenodo.15102246",
"conceptdoi": "10.5281/zenodo.7992026",
"doi_url": "https://doi.org/10.5281/zenodo.15102246",
"metadata": {
"title": "vol2birdR: Vertical Profiles of Biological Signals in Weather Radar Data",
"doi": "10.5281/zenodo.15102246",
"publication_date": "2025-03-28",
"description": "'R' implementation of the 'vol2bird' software for generating vertical profiles of birds and other biological signals in weather radar data. See Dokter et al. (2011) for a paper describing the methodology.",
"access_right": "open",
"creators": [
{
"name": "Henja, Anders",
"affiliation": null
},
{
"name": "Dokter, Adriaan M.",
"affiliation": null,
"orcid": "0000-0001-6573-066X"
}
],
"related_identifiers": [
{
"identifier": "https://github.com/adokter/vol2birdR/tree/1.0.9",
"relation": "isSupplementTo",
"resource_type": "software",
"scheme": "url"
}
],
"version": "1.0.9",
"custom": {
"code:codeRepository": "https://github.com/adokter/vol2birdR"
},
"resource_type": {
"title": "Software",
"type": "software"
},
"license": {
"id": "lgpl-3.0-or-later"
},
"communities": [
{
"id": "aloft"
}
],
"relations": {
"version": [
{
"index": 8,
"is_last": true,
"parent": {
"pid_type": "recid",
"pid_value": "7992026"
}
}
]
},
"notes": "To cite package \"vol2birdR\" in publications use:"
},
"title": "vol2birdR: Vertical Profiles of Biological Signals in Weather Radar Data",
"links": {
"self": "https://zenodo.org/api/records/15102246",
"self_html": "https://zenodo.org/records/15102246",
"preview_html": "https://zenodo.org/records/15102246?preview=1",
"doi": "https://doi.org/10.5281/zenodo.15102246",
"self_doi": "https://doi.org/10.5281/zenodo.15102246",
"self_doi_html": "https://zenodo.org/doi/10.5281/zenodo.15102246",
"reserve_doi": "https://zenodo.org/api/records/15102246/draft/pids/doi",
"parent": "https://zenodo.org/api/records/7992026",
"parent_html": "https://zenodo.org/records/7992026",
"parent_doi": "https://doi.org/10.5281/zenodo.7992026",
"parent_doi_html": "https://zenodo.org/doi/10.5281/zenodo.7992026",
"self_iiif_manifest": "https://zenodo.org/api/iiif/record:15102246/manifest",
"self_iiif_sequence": "https://zenodo.org/api/iiif/record:15102246/sequence/default",
"files": "https://zenodo.org/api/records/15102246/files",
"media_files": "https://zenodo.org/api/records/15102246/media-files",
"archive": "https://zenodo.org/api/records/15102246/files-archive",
"archive_media": "https://zenodo.org/api/records/15102246/media-files-archive",
"latest": "https://zenodo.org/api/records/15102246/versions/latest",
"latest_html": "https://zenodo.org/records/15102246/latest",
"versions": "https://zenodo.org/api/records/15102246/versions",
"draft": "https://zenodo.org/api/records/15102246/draft",
"access_links": "https://zenodo.org/api/records/15102246/access/links",
"access_grants": "https://zenodo.org/api/records/15102246/access/grants",
"access_users": "https://zenodo.org/api/records/15102246/access/users",
"access_request": "https://zenodo.org/api/records/15102246/access/request",
"access": "https://zenodo.org/api/records/15102246/access",
"communities": "https://zenodo.org/api/records/15102246/communities",
"communities-suggestions": "https://zenodo.org/api/records/15102246/communities-suggestions",
"requests": "https://zenodo.org/api/records/15102246/requests"
},
"updated": "2025-03-28T15:05:52.236301+00:00",
"recid": "15102246",
"revision": 4,
"files": [
{
"id": "86d5b726-1054-4b27-a7d3-055ed69c4282",
"key": "adokter/vol2birdR-1.0.9.zip",
"size": 4617105,
"checksum": "md5:ad1c6ba3c44d4dba42e6feb1d33a0437",
"links": {
"self": "https://zenodo.org/api/records/15102246/files/adokter/vol2birdR-1.0.9.zip/content"
}
}
],
"swh": {
"swhid": "swh:1:dir:756606802723bc05ad3888fb3cab48902162e7ef;origin=https://doi.org/10.5281/zenodo.7992026;visit=swh:1:snp:dea025a314fa24028b001a5361f9e9a09b1a1cdf;anchor=swh:1:rel:a364960d6ea05119b21ecec80eca4094a74e240a;path=adokter-vol2birdR-0742016"
},
"owners": [
{
"id": "74718"
}
],
"status": "published",
"stats": {
"downloads": 87,
"unique_downloads": 86,
"views": 267,
"unique_views": 250,
"version_downloads": 11,
"version_unique_downloads": 11,
"version_unique_views": 29,
"version_views": 29
},
"state": "done",
"submitted": true
},
{
"created": "2024-10-21T14:18:21.898320+00:00",
"modified": "2024-10-21T14:21:22.157692+00:00",
"id": 13961136,
"conceptrecid": "13959705",
"doi": "10.5281/zenodo.13961136",
"conceptdoi": "10.5281/zenodo.13959705",
"doi_url": "https://doi.org/10.5281/zenodo.13961136",
"metadata": {
"title": "vptstools: Transfer and convert vertical profile time series data",
"doi": "10.5281/zenodo.13961136",
"publication_date": "2024-10-21",
"description": "<p>vptstools is a Python library to transfer and convert VPTS data. VPTS (vertical profile time series) express the density, speed and direction of biological signals such as birds, bats and insects within a weather radar volume, grouped into altitude layers (height) and measured over time (datetime).</p>",
"access_right": "open",
"creators": [
{
"name": "Van Hoey, Stijn",
"affiliation": null,
"orcid": "0000-0001-6413-3185"
},
{
"name": "Noé, Nicolas",
"affiliation": null,
"orcid": "0000-0002-9503-4750"
},
{
"name": "Huybrechts, Pieter",
"affiliation": "Research Institute for Nature and Forest (INBO)",
"orcid": "0000-0002-6658-6062"
},
{
"name": "Desmet, Peter",
"affiliation": "Research Institute for Nature and Forest",
"orcid": "0000-0002-8442-8025"
}
],
"keywords": [
"data transformation",
"aeroecology",
"weather radar"
],
"related_identifiers": [
{
"identifier": "https://github.com/enram/vptstools/tree/v0.4.0",
"relation": "isSupplementTo",
"resource_type": "software",
"scheme": "url"
}
],
"version": "v0.4.0",
"language": "eng",
"custom": {
"code:codeRepository": "https://github.com/enram/vptstools",
"code:programmingLanguage": [
{
"id": "python",
"title": {
"en": "Python"
}
}
],
"code:developmentStatus": {
"id": "active",
"title": {
"en": "Active"
}
}
},
"resource_type": {
"title": "Software",
"type": "software"
},
"license": {
"id": "mit-license"
},
"communities": [
{
"id": "inbo"
},
{
"id": "aloft"
},
{
"id": "oscibio"
}
],
"relations": {
"version": [
{
"index": 3,
"is_last": true,
"parent": {
"pid_type": "recid",
"pid_value": "13959705"
}
}
]
},
"notes": "<ul>\n<li>Support <code>vph5_to_vpts</code> processing for a given directory, as an alternative to a given modification time window. The function will recursively scan the directory provided in <code>--path-s3-folder</code> for h5 files and process these to daily VPTS CSV files (<a href=\"https://github.com/enram/vptstools/pull/70\">#70</a>).</li>\n<li>Lock version of <code>s3fs[boto3]</code> dependency to <code>2023.5.0</code>, so transfer functionality doesn't suffer from dependency upgrades (<a href=\"https://github.com/enram/vptstools/pull/70\">#70</a>).</li>\n<li>Fix keyerror directory (<a href=\"https://github.com/enram/vptstools/issues/75\">#75</a>).</li>\n<li>Improvements to README regarding venv installation (<a href=\"https://github.com/enram/vptstools/issues/73\">#73</a>).</li>\n<li>Improve <code>vph5_to_vpts</code> information message when the routine fails on absence of files.</li>\n<li>Pin s3 mocking library version used for unit tests: <code>moto[s3]</code>.</li>\n<li>Add CITATION.cff file + add Pieter Huybrechts as co-author (<a href=\"https://github.com/enram/vptstools/pull/81\">#81</a>).</li>\n</ul>"
},
"title": "vptstools: Transfer and convert vertical profile time series data",
"links": {
"self": "https://zenodo.org/api/records/13961136",
"self_html": "https://zenodo.org/records/13961136",
"preview_html": "https://zenodo.org/records/13961136?preview=1",
"doi": "https://doi.org/10.5281/zenodo.13961136",
"self_doi": "https://doi.org/10.5281/zenodo.13961136",
"self_doi_html": "https://zenodo.org/doi/10.5281/zenodo.13961136",
"reserve_doi": "https://zenodo.org/api/records/13961136/draft/pids/doi",
"parent": "https://zenodo.org/api/records/13959705",
"parent_html": "https://zenodo.org/records/13959705",
"parent_doi": "https://doi.org/10.5281/zenodo.13959705",
"parent_doi_html": "https://zenodo.org/doi/10.5281/zenodo.13959705",
"self_iiif_manifest": "https://zenodo.org/api/iiif/record:13961136/manifest",
"self_iiif_sequence": "https://zenodo.org/api/iiif/record:13961136/sequence/default",
"files": "https://zenodo.org/api/records/13961136/files",
"media_files": "https://zenodo.org/api/records/13961136/media-files",
"archive": "https://zenodo.org/api/records/13961136/files-archive",
"archive_media": "https://zenodo.org/api/records/13961136/media-files-archive",
"latest": "https://zenodo.org/api/records/13961136/versions/latest",
"latest_html": "https://zenodo.org/records/13961136/latest",
"versions": "https://zenodo.org/api/records/13961136/versions",
"draft": "https://zenodo.org/api/records/13961136/draft",
"access_links": "https://zenodo.org/api/records/13961136/access/links",
"access_grants": "https://zenodo.org/api/records/13961136/access/grants",
"access_users": "https://zenodo.org/api/records/13961136/access/users",
"access_request": "https://zenodo.org/api/records/13961136/access/request",
"access": "https://zenodo.org/api/records/13961136/access",
"communities": "https://zenodo.org/api/records/13961136/communities",
"communities-suggestions": "https://zenodo.org/api/records/13961136/communities-suggestions",
"requests": "https://zenodo.org/api/records/13961136/requests"
},
"updated": "2024-10-21T14:21:22.157692+00:00",
"recid": "13961136",
"revision": 6,
"files": [
{
"id": "d12db1ec-b32c-4e74-b16d-241e02ef9ebf",
"key": "enram/vptstools-v0.4.0.zip",
"size": 464908,
"checksum": "md5:e93f1df08acc9d73f67a9359bb9841da",
"links": {
"self": "https://zenodo.org/api/records/13961136/files/enram/vptstools-v0.4.0.zip/content"
}
}
],
"swh": {
"swhid": "swh:1:dir:3bbd53980172abde254358fc88d4f3f213143746;origin=https://doi.org/10.5281/zenodo.13959705;visit=swh:1:snp:de25ba4b181f127d90182e137e941bce54cf9660;anchor=swh:1:rel:2c144f108e1a3fc46778006e43f3eda8209d693c;path=/"
},
"owners": [
{
"id": "6828"
}
],
"status": "published",
"stats": {
"downloads": 44,
"unique_downloads": 44,
"views": 165,
"unique_views": 145,
"version_downloads": 37,
"version_unique_downloads": 37,
"version_unique_views": 112,
"version_views": 120
},
"state": "done",
"submitted": true
},
{
"created": "2024-10-21T07:56:22.652078+00:00",
"modified": "2024-10-21T08:14:53.667061+00:00",
"id": 13959555,
"conceptrecid": "13959554",
"doi": "10.5281/zenodo.13959555",
"conceptdoi": "10.5281/zenodo.13959554",
"doi_url": "https://doi.org/10.5281/zenodo.13959555",
"metadata": {
"title": "VPTS CSV",
"doi": "10.5281/zenodo.13959555",
"publication_date": "2023-12-18",
"description": "<p>Data exchange format for biological signals detected by weather radars. See <a href=\"https://aloftdata.eu/vpts-csv/\">https://aloftdata.eu/vpts-csv/</a> for more information.</p>",
"access_right": "open",
"creators": [
{
"name": "Desmet, Peter",
"affiliation": "Research Institute for Nature and Forest",
"orcid": "0000-0002-8442-8025"
},
{
"name": "Noé, Nicolas",
"affiliation": null,
"orcid": "0000-0002-9503-4750"
},
{
"name": "Dokter, Adriaan M.",
"affiliation": "Cornell Lab of Ornithology",
"orcid": "0000-0001-6573-066X"
}
],
"keywords": [
"data exchange format",
"frictionlessdata",
"aeroecology",
"weather radar"
],
"related_identifiers": [
{
"identifier": "https://github.com/enram/vpts-csv/tree/v1.0",
"relation": "isSupplementTo",
"resource_type": "software",
"scheme": "url"
}
],
"version": "v1.0",
"language": "eng",
"resource_type": {
"title": "Software",
"type": "software"
},
"license": {
"id": "mit-license"
},
"communities": [
{
"id": "inbo"
},
{
"id": "aloft"
},
{
"id": "oscibio"
}
],
"relations": {
"version": [
{
"index": 0,
"is_last": true,
"parent": {
"pid_type": "recid",
"pid_value": "13959554"
}
}
]
}
},
"title": "VPTS CSV",
"links": {
"self": "https://zenodo.org/api/records/13959555",
"self_html": "https://zenodo.org/records/13959555",
"preview_html": "https://zenodo.org/records/13959555?preview=1",
"doi": "https://doi.org/10.5281/zenodo.13959555",
"self_doi": "https://doi.org/10.5281/zenodo.13959555",
"self_doi_html": "https://zenodo.org/doi/10.5281/zenodo.13959555",
"reserve_doi": "https://zenodo.org/api/records/13959555/draft/pids/doi",
"parent": "https://zenodo.org/api/records/13959554",
"parent_html": "https://zenodo.org/records/13959554",
"parent_doi": "https://doi.org/10.5281/zenodo.13959554",
"parent_doi_html": "https://zenodo.org/doi/10.5281/zenodo.13959554",
"self_iiif_manifest": "https://zenodo.org/api/iiif/record:13959555/manifest",
"self_iiif_sequence": "https://zenodo.org/api/iiif/record:13959555/sequence/default",
"files": "https://zenodo.org/api/records/13959555/files",
"media_files": "https://zenodo.org/api/records/13959555/media-files",
"archive": "https://zenodo.org/api/records/13959555/files-archive",
"archive_media": "https://zenodo.org/api/records/13959555/media-files-archive",
"latest": "https://zenodo.org/api/records/13959555/versions/latest",
"latest_html": "https://zenodo.org/records/13959555/latest",
"versions": "https://zenodo.org/api/records/13959555/versions",
"draft": "https://zenodo.org/api/records/13959555/draft",
"access_links": "https://zenodo.org/api/records/13959555/access/links",
"access_grants": "https://zenodo.org/api/records/13959555/access/grants",
"access_users": "https://zenodo.org/api/records/13959555/access/users",
"access_request": "https://zenodo.org/api/records/13959555/access/request",
"access": "https://zenodo.org/api/records/13959555/access",
"communities": "https://zenodo.org/api/records/13959555/communities",
"communities-suggestions": "https://zenodo.org/api/records/13959555/communities-suggestions",
"requests": "https://zenodo.org/api/records/13959555/requests"
},
"updated": "2024-10-21T08:14:53.667061+00:00",
"recid": "13959555",
"revision": 8,
"files": [
{
"id": "43cf8246-947d-4718-a2bc-b6870a1c929b",
"key": "enram/vpts-csv-v1.0.zip",
"size": 3950,
"checksum": "md5:809819c362067e0aee37046ed08a0bf5",
"links": {
"self": "https://zenodo.org/api/records/13959555/files/enram/vpts-csv-v1.0.zip/content"
}
}
],
"swh": {
"swhid": "swh:1:dir:33483c7cea809d7c3e5f4d538137d40dd4578232;origin=https://doi.org/10.5281/zenodo.13959554;visit=swh:1:snp:f4316defb1e60417a215606ab5ea83dfd26d4047;anchor=swh:1:rel:00062090b9f5d6360417d362b85fee9d523b9640;path=/"
},
"owners": [
{
"id": "6828"
}
],
"status": "published",
"stats": {
"downloads": 5,
"unique_downloads": 5,
"views": 32,
"unique_views": 29,
"version_downloads": 5,
"version_unique_downloads": 5,
"version_unique_views": 29,
"version_views": 32
},
"state": "done",
"submitted": true
},
{
"created": "2024-07-10T07:24:28.484604+00:00",
"modified": "2024-07-10T07:24:54.704293+00:00",
"id": 12703710,
"conceptrecid": "7326820",
"doi": "10.5281/zenodo.12703710",
"conceptdoi": "10.5281/zenodo.7326820",
"doi_url": "https://doi.org/10.5281/zenodo.12703710",
"metadata": {
"title": "birdscanR: Migration Traffic Rate Calculation Package for Birdscan MR1 Radars",
"doi": "10.5281/zenodo.12703710",
"publication_date": "2024-07-10",
"description": "<p>Extract data from Birdscan MR1 sql databases and process them to Migration Traffic Rates.</p>",
"access_right": "open",
"creators": [
{
"name": "Haest, Birgen",
"affiliation": "Swiss Ornithological Institute, Sempach, Switzerland"
},
{
"name": "Hertner, Fabian",
"affiliation": "Swiss Birdradar Solution AG, Winterthur, Switzerland"
},
{
"name": "Schmid, Baptiste",
"affiliation": "Swiss Ornithological Institute, Sempach, Switzerland"
},
{
"name": "Preatoni, Damiano",
"affiliation": "Environment Analysis and Management Unit - Guido Tosi Research Group - Department of Theoretical and Applied Sciences, Università degli Studi dell'Insubria, Varese, Italy"
},
{
"name": "De Groeve, Johannes",
"affiliation": "Institute for Biodiversity and Ecosystem Dynamics, University of Amsterdam, Amsterdam, The Netherlands"
},
{
"name": "Liechti, Felix",
"affiliation": "Swiss Ornithological Institute, Sempach, Switzerland"
}
],
"keywords": [
"birdscan",
"radar",
"R package",
"migration traffic",
"bird migration",
"insect migration"
],
"related_identifiers": [
{
"identifier": "https://cran.r-project.org/web/packages/birdscanR/index.html",
"relation": "isDescribedBy",
"resource_type": "other",
"scheme": "url"
}
],
"version": "0.3.0",
"language": "eng",
"resource_type": {
"title": "Software",
"type": "software"
},
"license": {
"id": "apgl-v3"
},
"communities": [
{
"id": "aloft"
},
{
"id": "vora"
}
],
"relations": {
"version": [
{
"index": 3,
"is_last": true,
"parent": {
"pid_type": "recid",
"pid_value": "7326820"
}
}
]
}
},
"title": "birdscanR: Migration Traffic Rate Calculation Package for Birdscan MR1 Radars",
"links": {
"self": "https://zenodo.org/api/records/12703710",
"self_html": "https://zenodo.org/records/12703710",
"preview_html": "https://zenodo.org/records/12703710?preview=1",
"doi": "https://doi.org/10.5281/zenodo.12703710",
"self_doi": "https://doi.org/10.5281/zenodo.12703710",
"self_doi_html": "https://zenodo.org/doi/10.5281/zenodo.12703710",
"reserve_doi": "https://zenodo.org/api/records/12703710/draft/pids/doi",
"parent": "https://zenodo.org/api/records/7326820",
"parent_html": "https://zenodo.org/records/7326820",
"parent_doi": "https://doi.org/10.5281/zenodo.7326820",
"parent_doi_html": "https://zenodo.org/doi/10.5281/zenodo.7326820",
"self_iiif_manifest": "https://zenodo.org/api/iiif/record:12703710/manifest",
"self_iiif_sequence": "https://zenodo.org/api/iiif/record:12703710/sequence/default",
"files": "https://zenodo.org/api/records/12703710/files",
"media_files": "https://zenodo.org/api/records/12703710/media-files",
"archive": "https://zenodo.org/api/records/12703710/files-archive",
"archive_media": "https://zenodo.org/api/records/12703710/media-files-archive",
"latest": "https://zenodo.org/api/records/12703710/versions/latest",
"latest_html": "https://zenodo.org/records/12703710/latest",
"versions": "https://zenodo.org/api/records/12703710/versions",
"draft": "https://zenodo.org/api/records/12703710/draft",
"access_links": "https://zenodo.org/api/records/12703710/access/links",
"access_grants": "https://zenodo.org/api/records/12703710/access/grants",
"access_users": "https://zenodo.org/api/records/12703710/access/users",
"access_request": "https://zenodo.org/api/records/12703710/access/request",
"access": "https://zenodo.org/api/records/12703710/access",
"communities": "https://zenodo.org/api/records/12703710/communities",
"communities-suggestions": "https://zenodo.org/api/records/12703710/communities-suggestions",
"requests": "https://zenodo.org/api/records/12703710/requests"
},
"updated": "2024-07-10T07:24:54.704293+00:00",
"recid": "12703710",
"revision": 6,
"files": [
{
"id": "ddabc5c4-97c6-492c-9e8f-fcedbc6b4caa",
"key": "birdscanR-0.3.0.zip",
"size": 1069975,
"checksum": "md5:15f86719272b9d79553d57ed83b438d4",
"links": {
"self": "https://zenodo.org/api/records/12703710/files/birdscanR-0.3.0.zip/content"
}
}
],
"swh": {},
"owners": [
{
"id": "95292"
}
],
"status": "published",
"stats": {
"downloads": 77,
"unique_downloads": 77,
"views": 873,
"unique_views": 790,
"version_downloads": 24,
"version_unique_downloads": 24,
"version_unique_views": 185,
"version_views": 203
},
"state": "done",
"submitted": true
},
{
"created": "2023-03-31T14:43:40.668770+00:00",
"modified": "2025-01-24T09:47:26.582304+00:00",
"id": 7789302,
"conceptrecid": "3369998",
"doi": "10.5281/zenodo.7789302",
"conceptdoi": "10.5281/zenodo.3369998",
"doi_url": "https://doi.org/10.5281/zenodo.7789302",
"metadata": {
"title": "vol2bird: Vertical profiling of biological scatterers from weather radar data",
"doi": "10.5281/zenodo.7789302",
"publication_date": "2023-03-31",
"description": "<p>All issues and PRs included in this release can be found <a href=\"https://github.com/adokter/vol2bird/milestone/5?closed=1\">here</a>.</p>\n<p>New features:</p>\n<ul>\n<li>new <code>vol2bird.sh</code> script for running vol2bird, which sets up required library paths and environmental variables automatically (#152)</li>\n<li>new <code>-c</code> command line argument to specify vol2bird configuration file, allowing different names than <code>options.conf</code> (#186)</li>\n<li>add range data to pointsarray output (#173)</li>\n</ul>\n<p>Changes:</p>\n<ul>\n<li>change default maximum range to 35 km, for consistency with bioRad methods paper (#117)</li>\n<li>updated dependencies <a href=\"https://github.com/baltrad/rave\">rave</a> and <a href=\"https://github.com/baltrad/hlhdf\">hlhdf</a></li>\n</ul>\n<p>Bugfixes:</p>\n<ul>\n<li>address crash that occured when certain NEXRAD files fail to decompress (#196 and <a href=\"https://github.com/adokter/vol2birdR/commit/7abd666320b49f24a75c01d69141082c3d85abd8\">ar2v decompression fails</a>)</li>\n<li>fixes a bug that lead to profile generation aborts for files containing scans with a correlation coefficient moment, but missing either reflectivity or radial velocity (#195)</li>\n<li>bugfix for erroneous values outside of mistnet prediction area, changed those to NODATA (#168)</li>\n<li>bugfix of incorrect read of nyquist velocity and range resolution for specific NEXRAD files (#166)</li>\n<li>bugfix for calculating a profile when elevation scans miss data along large sections of the azimuth circle (#163)</li>\n<li>bugfix for compatibility with NEXRAD RDA/RPG build > 19.0 (which adds new moment in the nexrad data format, CFP data) (#158)</li>\n<li>bugfix addressing incorrect loading of cluttermaps defined at a coarser ray resolution than the polar volume data (#153)</li>\n<li>bugfix for handling files where multiple scans in a volume have identical elevations (#148, #150)</li>\n</ul>",
"access_right": "open",
"creators": [
{
"name": "Dokter, Adriaan M.",
"affiliation": "Cornell Lab of Ornithology",
"orcid": "0000-0001-6573-066X"
},
{
"name": "Henja, Anders",
"affiliation": null
},
{
"name": "Spaaks, Jurriaan H.",
"affiliation": null
},
{
"name": "Tedeschi, Alexander",
"affiliation": "Cornell Lab of Ornithology",
"orcid": "0000-0003-0772-6931"
},
{
"name": "Veen, Lourens",
"affiliation": null
},
{
"name": "Holleman, Iwan",
"affiliation": null
}
],
"related_identifiers": [
{
"identifier": "https://github.com/adokter/vol2bird/tree/0.6.0",
"relation": "isSupplementTo",
"scheme": "url"
}
],
"version": "0.6.0",
"resource_type": {
"title": "Software",
"type": "software"
},
"license": {
"id": "mit-license"
},
"communities": [
{
"id": "aloft"
}
],
"relations": {
"version": [
{
"index": 3,
"is_last": true,
"parent": {
"pid_type": "recid",
"pid_value": "3369998"
}
}
]
}
},
"title": "vol2bird: Vertical profiling of biological scatterers from weather radar data",
"links": {
"self": "https://zenodo.org/api/records/7789302",
"self_html": "https://zenodo.org/records/7789302",
"preview_html": "https://zenodo.org/records/7789302?preview=1",
"doi": "https://doi.org/10.5281/zenodo.7789302",
"self_doi": "https://doi.org/10.5281/zenodo.7789302",
"self_doi_html": "https://zenodo.org/doi/10.5281/zenodo.7789302",
"reserve_doi": "https://zenodo.org/api/records/7789302/draft/pids/doi",
"parent": "https://zenodo.org/api/records/3369998",
"parent_html": "https://zenodo.org/records/3369998",
"parent_doi": "https://doi.org/10.5281/zenodo.3369998",
"parent_doi_html": "https://zenodo.org/doi/10.5281/zenodo.3369998",
"self_iiif_manifest": "https://zenodo.org/api/iiif/record:7789302/manifest",
"self_iiif_sequence": "https://zenodo.org/api/iiif/record:7789302/sequence/default",
"files": "https://zenodo.org/api/records/7789302/files",
"media_files": "https://zenodo.org/api/records/7789302/media-files",
"archive": "https://zenodo.org/api/records/7789302/files-archive",
"archive_media": "https://zenodo.org/api/records/7789302/media-files-archive",
"latest": "https://zenodo.org/api/records/7789302/versions/latest",
"latest_html": "https://zenodo.org/records/7789302/latest",
"versions": "https://zenodo.org/api/records/7789302/versions",
"draft": "https://zenodo.org/api/records/7789302/draft",
"access_links": "https://zenodo.org/api/records/7789302/access/links",
"access_grants": "https://zenodo.org/api/records/7789302/access/grants",
"access_users": "https://zenodo.org/api/records/7789302/access/users",
"access_request": "https://zenodo.org/api/records/7789302/access/request",
"access": "https://zenodo.org/api/records/7789302/access",
"communities": "https://zenodo.org/api/records/7789302/communities",
"communities-suggestions": "https://zenodo.org/api/records/7789302/communities-suggestions",
"requests": "https://zenodo.org/api/records/7789302/requests"
},
"updated": "2025-01-24T09:47:26.582304+00:00",
"recid": "7789302",
"revision": 6,
"files": [
{
"id": "c461d101-880c-4057-a62e-2964ac9e4f4c",
"key": "adokter/vol2bird-0.6.0.zip",
"size": 18129758,
"checksum": "md5:12c9b5e01de7cbcd9104372adc9d939a",
"links": {
"self": "https://zenodo.org/api/records/7789302/files/adokter/vol2bird-0.6.0.zip/content"
}
}
],
"swh": {
"swhid": "swh:1:dir:2d8fc8caa9069a8d90c986484d181b742b93b85d;origin=https://doi.org/10.5281/zenodo.3369998;visit=swh:1:snp:e8ebf7524fb405811b081c8f359b14da0949059b;anchor=swh:1:rel:0e8c2a56134890beefe9735d704bbb334259ffc4;path=adokter-vol2bird-cfb9bf2"
},
"owners": [
{
"id": "74718"
}
],
"status": "published",
"stats": {
"downloads": 59,
"unique_downloads": 56,
"views": 1146,
"unique_views": 1107,
"version_downloads": 7,
"version_unique_downloads": 7,
"version_unique_views": 74,
"version_views": 84
},
"state": "done",
"submitted": true
},
{
"created": "2022-11-28T13:58:43.911993+00:00",
"modified": "2024-10-19T15:12:19.030495+00:00",
"id": 7372679,
"conceptrecid": "4629448",
"doi": "10.5281/zenodo.7372679",
"conceptdoi": "10.5281/zenodo.4629448",
"doi_url": "https://doi.org/10.5281/zenodo.7372679",
"metadata": {
"title": "CROW - Online tool to visualize birds detected by weather radars",
"doi": "10.5281/zenodo.7372679",
"publication_date": "2022-11-28",
"description": "<p>CROW is a single-page application to visualize birds detected by weather radars. It visualizes <a href=\"https://adokter.github.io/bioRad/reference/summary.vpts.html#details\"><code>vpts</code></a> data from a public repository directly in the browser and can thus be hosted on a static file server. As it only visualizes data from one radar at a time, it is easily scalable.</p>\n\n<p>CROW is implemented in <a href=\"https://www.typescriptlang.org/\">TypeScript</a> and makes use of the <a href=\"https://cli.vuejs.org/\">Vue CLI toolkit</a>, <a href=\"https://d3js.org/\">D3</a> and <a href=\"https://bootstrap-vue.js.org/\">BootstrapVue</a>.</p>\n\n<p>CROW was jointly developed by the <a href=\"https://www.inbo.be/en/\">Research Institute for Nature and Forest (INBO)</a> and the <a href=\"https://www.meteo.be/\">Royal Meteorological Institute of Belgium (RMI)</a> in collaboration with the <a href=\"https://www.naturalsciences.be/\">Royal Belgian Institute for Natural Sciences (RBINS)</a>, with financial support from the <a href=\"https://www.belspo.be/\">Belgian Science Policy Office</a> (BelSPO valorisation project CROW).</p>\n\n<p><strong>Running installations</strong></p>\n\n<ul>\n\t<li><a href=\"https://inbo.github.io/crow/\">Demo</a></li>\n\t<li><a href=\"https://www.meteo.be/birddetection/\">Meteo.be</a></li>\n</ul>\n\n<p><strong>Installation, deployment, architecture, data flow</strong></p>\n\n<p>See <code>README.md</code>.</p>\n\n<p><strong>New in this release</strong></p>\n\n<ul>\n\t<li>Fix <a href=\"https://github.com/inbo/crow/issues/170\">https://github.com/inbo/crow/issues/170</a></li>\n\t<li>Remove Swiss radar Albis</li>\n</ul>",
"access_right": "open",
"creators": [
{
"name": "Noé, Nicolas",
"affiliation": "Research Institute for Nature and Forest (INBO)",
"orcid": "0000-0002-9503-4750"
},
{
"name": "Reyniers, Maarten",
"affiliation": "Royal Meteorological Institute of Belgium (RMI)",
"orcid": "0000-0003-3671-6900"
},
{
"name": "Van Hoey, Stijn",
"affiliation": "Research Institute for Nature and Forest (INBO)",
"orcid": "0000-0001-6413-3185"
},
{
"name": "Desmet, Peter",
"affiliation": "Research Institute for Nature and Forest (INBO)",
"orcid": "0000-0002-8442-8025"
}
],
"keywords": [
"weather radar",
"visualization",
"aeroecology"
],
"related_identifiers": [
{
"identifier": "https://github.com/inbo/crow/tree/v1.3",
"relation": "isSupplementTo",
"scheme": "url"
},
{
"identifier": "https://opendata.meteo.be/geonetwork/srv/eng/catalog.search#/metadata/RMI_DATASET_CROW",
"relation": "cites",
"resource_type": "dataset",
"scheme": "url"
},
{
"identifier": "10.1098/rsif.2010.0116",
"relation": "cites",
"resource_type": "publication-article",
"scheme": "doi"
},
{
"identifier": "10.1111/ecog.04028",
"relation": "cites",
"resource_type": "publication-article",
"scheme": "doi"
}
],
"version": "v1.3",
"language": "eng",
"resource_type": {
"title": "Software",
"type": "software"
},
"license": {
"id": "mit-license"
},
"communities": [
{
"id": "inbo"
},
{
"id": "aloft"
},
{
"id": "oscibio"
}
],
"relations": {
"version": [
{
"index": 1,
"is_last": true,
"parent": {
"pid_type": "recid",
"pid_value": "4629448"
}
}
]
},