Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/components/features.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ export const Features = () => {
Key Features & Capabilities
</Heading>
<Text fontSize={'lg'}>
Parcels can be used to track passive and active particulates such as
water, plankton, plastic, icebergs, and fish using data from flow
datasets.
The Virtual Ship can be used to simulate and teach the planning, execution and analysis of ocean-based fieldwork
</Text>

<SimpleGrid columns={{ base: 1, md: 2, lg: 4 }} spacing={8} my={8}>
Expand Down
32 changes: 16 additions & 16 deletions src/data/features.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
export const Features = [
{
title: 'Use data from any (curvilinear) grid',
text: 'Parcels works on model outputs including NEMO, POP, MITgcm, and more.',
title: 'Train students and researchers',
text: 'The Virtual Ship is a tool to train students and researchers in marine sciences for working at sea.',
},
{
title: 'Combine data on different grids',
text: 'Create a single Parcels FieldSet from multiple different model outputs.',
title: 'Plan and execute your own expedition',
text: 'The Virtual Ship allows you to plan your expedition, including the route, instruments and data collection.',
},
{
title: 'Define and execute custom kernels',
text: 'Encode custom particle operations such as swimming or sinking.',
title: 'Integrate with the Marine Facilities Planning Portal',
text: 'Plan your fieldwork at the marinefacilitiesplanning.com portal and use the downloaded route in the Virtual Ship.',
},
{
title: 'Advect particles in 2D and 3D',
text: 'Use built-in kernels for Runge-Kutta4 and Runge-Kutta45 schemes.',
title: 'Works with Copernicus Marine Service data',
text: 'The Virtual Ship uses the copernicusmarine tool to seamlessly download hydrodynamic and biogeochemical data.',
},
{
title: 'Diffuse particles in 2D',
text: 'Use built-in kernels for the Milstein and Euler-Maruyama schemes.',
title: 'Simulate CTD, ADCP, drifter and Argo data',
text: 'The Virtual Ship simulates data retrieval from CTD, ADCP, XBT, surface drifters and Argo float instruments.',
},
{
title: 'Start and stop particles during execution',
text: 'For example, to simulate oil spills or fish spawning.',
title: 'Experience life on board with VR',
text: 'The Virtual Ship includes 360 videos for VR headsets to experience life on board a research vessel.',
},
{
title: 'Simulate particle-particle interactions',
text: 'For example, to simulate aggregation or mortality.',
title: 'Use with OceanParcels',
text: 'The Virtual Ship is built on top of OceanParcels, a Python library for simulating particle trajectories.',
},
{
title: 'Output particle data in zarr format',
text: 'For highly efficient output of particle data.',
title: 'Open source and free to use',
text: 'The Virtual Ship is open source and free to use. You can find the code on GitHub.',
},
]
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function IndexPage() {
return (
<Layout
url={`/`}
title={'Virtual Ship: Explore the ocean with a virtual research vessel'}
title={'VirtualShip: Explore the ocean with a virtual research vessel'}
card={
'https://raw.githubusercontent.com/OceanParcels/oceanparcels_website/main/public/virtualship-assets/virtual_ship_logo_no-text.png'
}
Expand Down