-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpapers-citing-parcels.js
More file actions
145 lines (134 loc) · 4.2 KB
/
papers-citing-parcels.js
File metadata and controls
145 lines (134 loc) · 4.2 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
import { Layout } from '@/components/layout'
import {
Box,
Container,
Heading,
Text,
Accordion,
Link,
List,
ListItem,
} from '@chakra-ui/react'
import { papersCitingParcels } from '@/data/papers-citing-parcels'
import { Paper } from '@/components/paper'
const HowToCite = () => {
return (
<Box>
<Text>
The manuscript detailing the first release of Parcels, version 0.9, has
been published in{' '}
<Link
href='https://www.geosci-model-dev.net/10/4175/2017/gmd-10-4175-2017.html'
color='blue.500'
isExternal
>
Geoscientific Model Development
</Link>{' '}
and can be cited as:
</Text>
<List spacing={2} my={4} fontStyle='italic'>
<ListItem>
Lange, M and E van Sebille (2017) Parcels v0.9: prototyping a
Lagrangian Ocean Analysis framework for the petascale age.
Geoscientific Model Development, 10, 4175-4186.{' '}
<Link
href='https://doi.org/10.5194/gmd-2017-167'
color='blue.500'
isExternal
>
https://doi.org/10.5194/gmd-2017-167
</Link>
</ListItem>
</List>
<Text mt={4}>
The manuscript detailing version 2.0 of Parcels is available at{' '}
<Link
href='https://www.geosci-model-dev.net/12/3571/2019/gmd-12-3571-2019-discussion.html'
color='blue.500'
isExternal
>
Geoscientific Model Development
</Link>{' '}
and can be cited as:
</Text>
<List spacing={2} my={4} fontStyle='italic'>
<ListItem>
Delandmeter, P and E van Sebille (2019) The Parcels v2.0 Lagrangian
framework: new field interpolation schemes. Geoscientific Model
Development, 12, 3571-3584.{' '}
<Link
href='https://doi.org/10.5194/gmd-12-3571-2019'
color='blue.500'
isExternal
>
https://doi.org/10.5194/gmd-12-3571-2019
</Link>
</ListItem>
</List>
<Text mt={4}>
The manuscript detailing the performance of Parcels v2.4 is available at{' '}
<Link
href='https://doi.org/10.1016/j.cageo.2023.105322'
color='blue.500'
isExternal
>
Computers & Geosciences
</Link>{' '}
and can be cited as:
</Text>
<List spacing={2} my={4} fontStyle='italic'>
<ListItem>
Kehl, C, PD Nooteboom, MLA Kaandorp and E van Sebille (2023)
Efficiently simulating Lagrangian particles in large-scale ocean flows
— Data structures and their impact on geophysical applications,
Computers and Geosciences, 175, 105322.{' '}
<Link
href='https://doi.org/10.1016/j.cageo.2023.105322'
color='blue.500'
isExternal
>
https://doi.org/10.1016/j.cageo.2023.105322
</Link>
</ListItem>
</List>
</Box>
)
}
const PapersCitingParcels = () => {
return (
<Layout
title={'Papers citing Parcels'}
card={
'https://raw.githubusercontent.com/OceanParcels/oceanparcels_website/main/public/parcels-assets/logo-no-text.png'
}
url={`/papers-citing-parcels`}
>
<Box as='section' py={20}>
<Container maxW='container.lg'>
<Heading as='h1' size='2xl' textAlign={'center'}>
How to cite Parcels
</Heading>
<HowToCite />
<Box id='papers-citing-parcels' />
<Heading as='h1' size='2xl' textAlign={'center'} mt={32}>
Peer-reviewed papers using Parcels
</Heading>
<Accordion allowMultiple>
{papersCitingParcels.reverse().map((paper, index, array) => (
<Paper
key={paper.title}
published_info={paper.published_info}
title={paper.title}
authors={paper.authors}
doi={paper.doi}
abstract={paper.abstract}
number={array.length - index}
/>
))}
</Accordion>
</Container>
</Box>
</Layout>
)
}
export default PapersCitingParcels