diff --git a/.gitignore b/.gitignore index b1a8e52..d7ab61a 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,5 @@ yarn-error.log* .env.production.local storybook-static + +tests/output \ No newline at end of file diff --git a/README.md b/README.md index 3ddeccb..031106d 100644 --- a/README.md +++ b/README.md @@ -1,142 +1,78 @@ -# ๐Ÿ“ฆ React โ€ข Typescript โ€ข Package Starter +# ๐Ÿ“‚ scrape-directory-listing -A slightly opinionated starter kit for developing React and/or TypeScript packages. It comes with a several pre-configured tools, so you could focus on coding instead of configuring a project for the nth time. From building to releasing a package, this starter kit has you covered. +Download all the files from a directory listing such as https://www.ndbc.noaa.gov/data/ocean/. -> ๐Ÿ‘‹ Hello there! Follow me [@linesofcode](https://twitter.com/linesofcode) or visit [linesofcode.dev](https://linesofcode.dev) for more cool projects like this one. - -## ๐Ÿƒ Getting started +## ๐Ÿ“ก Install ```console -npx degit TimMikeladze/tsup-react-package-starter my-package +npm install scrape-directory-listing -cd my-package && git init +yarn add scrape-directory-listing -pnpm install && pnpm dev +pnpm add scrape-directory-listing ``` -โ—Important note: This project uses [pnpm](https://pnpm.io/) for managing dependencies. If you want to use another package manager, remove the `pnpm-lock.yaml` and control-f for usages of `pnpm` in the project and replace them with your package manager of choice. If you don't have `pnpm` installed and want to use it, you can install it by running `npm install -g pnpm`. - -## What's included? - -- โšก๏ธ[tsup](https://github.com/egoist/tsup) - The simplest and fastest way to bundle your TypeScript libraries. Used to bundle package as ESM and CJS modules. Supports TypeScript, Code Splitting, PostCSS, and more out of the box. -- ๐Ÿ“– [Storybook](https://storybook.js.org/) - Build UI components and pages in isolation. It streamlines UI development, testing, and documentation. -- ๐Ÿงช [Vitest](https://vitest.dev/) - A testing framework for JavaScript. Preconfigured to work with TypeScript and JSX. -- ๐Ÿ”ผ [Release-it](https://github.com/release-it/release-it/) - release-it is a command line tool to automatically generate a new GitHub Release and populates it with the changes (commits) made since the last release. -- ๐Ÿ™ [Test & Publish via Github Actions](https://docs.github.com/en/actions) - CI/CD workflows for your package. Run tests on every commit plus integrate with Github Releases to automate publishing package to NPM and Storybook to Github Pages. -- ๐Ÿ“„ [Commitizen](https://github.com/commitizen/cz-cli) โ€” When you commit with Commitizen, you'll be prompted to fill out any required commit fields at commit time. -- ๐Ÿถ [Husky](https://github.com/typicode/husky) โ€” Run scripts before committing. -- ๐Ÿšซ [lint-staged](https://github.com/okonet/lint-staged) โ€” Run linters on git staged files -- ๐Ÿค– [Dependabot](https://docs.github.com/en/code-security/dependabot) - Github powered dependency update tool that fits into your workflows. Configured to periodically check your dependencies for updates and send automated pull requests. -- โ˜‘๏ธ [ESLint](https://eslint.org/) - A linter for JavaScript. Includes a simple configuration for React projects based on the recommended ESLint and AirBnB configs. -- ๐ŸŽจ [Prettier](https://prettier.io/) - An opinionated code formatter. -- ๐Ÿƒโ€โ™€๏ธโ€โžก๏ธ [TSX](https://github.com/privatenumber/tsx) - Execute TypeScript files with zero-config in a Node.js environment. +> ๐Ÿ‘‹ Hello there! Follow me [@linesofcode](https://twitter.com/linesofcode) or visit [linesofcode.dev](https://linesofcode.dev) for more cool projects like this one. -## Usage +## ๐Ÿš€ Getting started -### ๐Ÿ’ป Developing +This example will recursively download all the files from https://www.ndbc.noaa.gov/data/ocean/. -Watch and rebuild code with `tsup` and runs Storybook to preview your UI during development. +```ts +import { scrapeDirectoryListing } from 'scrape-directory-listing'; -```console -pnpm dev +const res = await scrapeDirectoryListing({ + url: 'https://www.ndbc.noaa.gov/data/ocean', +}); ``` -Run all tests and watch for changes - -```console -pnpm test +The response will contain an array of objects with the following properties: + +```ts +{ + item: { + description: string; + modifiedAt: number; + name: string; + path: string; + size: number | null; + type: 'file' | 'directory'; + }, + data: ArrayBuffer; + headers: Headers; +} ``` -### ๐Ÿ—๏ธ Building - -Build package with `tsup` for production. +## ๐Ÿ“ Writing to the file system -```console -pnpm build -``` +```ts +import { scrapeDirectoryListing } from 'scrape-directory-listing'; +import { writeFile } from 'fs/promises'; -### โ–ถ๏ธ Running files written in TypeScript +const res = await scrapeDirectoryListing({ + url: 'https://www.ndbc.noaa.gov/data/ocean', +}); -To execute a file written in TypeScript inside a Node.js environment, use the `tsx` command. This will detect your `tsconfig.json` and run the file with the correct configuration. This is perfect for running custom scripts while remaining type-safe. +const first = res[0]; -```console -pnpm tsx ./path/to/file.ts +await writeFile('output/' + first.item.name, Buffer.from(first.data)); ``` -This is useful for running scripts, starting a server, or any other code you want to run while remaining type-safe. +## โŒ› Custom fetch and concurrency -### ๐Ÿ–‡๏ธ Linking +You can pass fetch function and combine with custom logic, for example to control current number of concurrent requests. -Often times you want to `link` this package to another project when developing locally, circumventing the need to publish to NPM to consume it. +```ts +import { scrapeDirectoryListing } from 'scrape-directory-listing'; +import pLimit from 'p-limit'; -In a project where you want to consume your package run: +// Limit to 1 request at a time +const limit = pLimit(1); -```console -pnpm link my-package --global -``` - -Learn more about package linking [here](https://pnpm.io/cli/link). - -### ๐Ÿ“ฉ Committing - -When you are ready to commit simply run the following command to get a well formatted commit message. All staged files will automatically be linted and fixed as well. - -```console -pnpm commit -``` - -### ๐Ÿ”– Releasing, tagging & publishing to NPM - -Create a semantic version tag and publish to Github Releases. When a new release is detected a Github Action will automatically build the package and publish it to NPM. Additionally, a Storybook will be published to Github pages. - -Learn more about how to use the `release-it` command [here](https://github.com/release-it/release-it). - -```console -pnpm release +const res = await scrapeDirectoryListing({ + url: 'https://www.ndbc.noaa.gov/data/ocean', + fetchFileFn: async (item) => { + return limit(() => fetch(item.url)); + }, +}); ``` - -When you are ready to publish to NPM simply run the following command: - -```console -pnpm publish -``` - -#### ๐Ÿค– Auto publish after Github Release (or manually by dispatching the Publish workflow) - -โ—Important note: in order to automatically publish a Storybook on Github Pages you need to open your repository settings, navigate to "Actions" and enable **"Read & write permissions"** for Workflows. Then navigate to "Pages" and choose **"GitHub Actions"** as the source for the Build and Deployment. After a successful deployment you can find your Storybook at `https://.github.io//`. - -โ—Important note: in order to publish package to NPM you must add your token as a Github Action secret. Learn more on how to configure your repository and publish packages through Github Actions [here](https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages). - -## ๐ŸŽจ CSS & PostCSS - -Import CSS files works out of the box. Simply import your CSS files in your components and they will be bundled with your package. - -[tsup](https://github.com/egoist/tsup) supports PostCSS out of the box. Simply run `pnpm add postcss -D` add a `postcss.config.js` file to the root of your project, then add any plugins you need. Learn more how to configure PostCSS [here](https://tsup.egoist.dev/#css-support). - -Additionally consider using the [tsup](https://github.com/egoist/tsup) configuration option `injectStyle` to inject the CSS directly into your Javascript bundle instead of outputting a separate CSS file. - -## ๐Ÿš€ Built something using this starter-kit? - -That's awesome! Feel free to add it to the list. - -๐Ÿ—ƒ๏ธ **[Next Upload](https://github.com/TimMikeladze/next-upload)** - Turn-key solution for integrating Next.js with signed & secure file-uploads to an S3 compliant storage service such as R2, AWS, or Minio. - -๐Ÿ **[Next Flag](https://github.com/TimMikeladze/next-flag)** - Feature flags powered by GitHub issues and NextJS. Toggle the features of your app by ticking a checkbox in a GitHub issue. Supports server-side rendering, multiple environments, and can be deployed as a stand-alone feature flag server. - -๐Ÿ“ฎ **[Next Invite](https://github.com/TimMikeladze/next-invite)** - A drop-in invite system for your Next.js app. Generate and share invite links for users to join your app. - -๐Ÿ” **[Next Auth MUI](https://github.com/TimMikeladze/next-auth-mui)** - Sign-in dialog component for NextAuth built with Material UI and React. Detects configured OAuth and Email providers and renders buttons or input fields for each respectively. Fully themeable, extensible and customizable to support custom credential flows. - -โŒš๏ธ **[Next Realtime](https://github.com/TimMikeladze/next-realtime)** - Experimental drop-in solution for real-time data leveraging the Next.js Data Cache. - -โœ… **[Mui Joy Confirm](https://github.com/TimMikeladze/mui-joy-confirm)** - Confirmation dialogs built on top of [@mui/joy](https://mui.com/joy-ui/getting-started/) and react hooks. - -๐Ÿ—‚๏ธ **[Use File System](https://github.com/TimMikeladze/use-file-system)** - A set of React hooks to interact with the File System API. Watch a directory for changes and return a map of filepaths & contents when a file is added, modified or removed. - -๐Ÿ™ **[Use Octokit](https://github.com/TimMikeladze/use-octokit)** - A data-fetching hook built on top of the Octokit and SWR for interacting with the Github API. Use this inside a React component for a type-safe, data-fetching experience with caching, polling, and more. - -๐ŸŒ **[Space Slug](https://github.com/TimMikeladze/space-slug)** - Generate unique slugs, usernames, numbers, custom words, and more using an intuitive api with zero dependencies. - -๐ŸŒก๏ธ **[TSC Baseline](https://github.com/TimMikeladze/tsc-baseline/)** - Save a baseline of TypeScript errors and compare new errors against it. Useful for type-safe feature development in TypeScript projects that have a lot of errors. This tool will filter out errors that are already in the baseline and only show new errors. - -โ™พ๏ธ **[react-infinite-observer](https://github.com/Tasin5541/react-infinite-observer)** - A simple hook to implement infinite scroll in react component, with full control over the behavior. Implemented with IntersectionObserver. diff --git a/package.json b/package.json index 733adf4..d23e335 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,19 @@ { "name": "scrape-directory-listing", - "description": "", + "description": "Download all the files from a directory listing.", "version": "0.0.0", "author": "Tim Mikeladze ", "license": "MIT", - "keywords": [], + "keywords": [ + "scrape directory listing", + "download directory", + "download file directory", + "scrape file directory", + "scrape directory" + ], "repository": { "type": "git", - "url": "" + "url": "git@github.com:TimMikeladze/scrape-directory-listing.git" }, "scripts": { "dev": "concurrently \"pnpm build --watch\" \"pnpm test\" ", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6049f89..dfe7f86 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,10 +7,6 @@ settings: importers: .: - dependencies: - human-format: - specifier: ^1.2.0 - version: 1.2.0 devDependencies: '@babel/core': specifier: 7.24.7 @@ -3937,10 +3933,6 @@ packages: resolution: {integrity: sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==} engines: {node: '>= 14'} - human-format@1.2.0: - resolution: {integrity: sha512-GIjOefWusTiXEPezbuI59uc1G2SNMpym6w1wNfoWAG6QrTsWueuauR5We0xHHuzoJKIYTwwNtTEy0ahyji5KXw==} - engines: {node: '>=4'} - human-signals@2.1.0: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} @@ -11277,8 +11269,6 @@ snapshots: transitivePeerDependencies: - supports-color - human-format@1.2.0: {} - human-signals@2.1.0: {} human-signals@5.0.0: {} diff --git a/src/index.ts b/src/index.ts index c657071..f96c0ca 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,12 +1,12 @@ import { JSDOM } from 'jsdom'; -interface DirectoryListingItem { +export interface DirectoryListingItem { description: string; modifiedAt: number; name: string; - path: string; size: number | null; type: 'file' | 'directory'; + url: string; } export interface ParseDirectoryListingHtmlArgs { @@ -49,7 +49,7 @@ export const parseDirectoryListingHtml = ( files.push({ type, name, - path, + url: path, modifiedAt, size: parsedSize, description, @@ -83,7 +83,7 @@ export const fetchDirectoryListing = async ( if (item.type === 'file') { return { ...item, - path: [item.path].join('/').replace(/([^:]\/)\/+/g, '$1'), + url: [item.url].join('/').replace(/([^:]\/)\/+/g, '$1'), }; } return item; @@ -93,7 +93,7 @@ export const fetchDirectoryListing = async ( items .filter((item) => item.type === 'directory') .map(async (item) => { - const newPath = [currentPath, item.path].join('/'); + const newPath = [currentPath, item.url].join('/'); const subDirectoryItems = await fetchDirectoryListing( { fetchListingFn, @@ -104,7 +104,7 @@ export const fetchDirectoryListing = async ( items.push( ...subDirectoryItems.map((x) => ({ ...x, - path: [baseUrl, newPath, x.path] + url: [baseUrl, newPath, x.url] .join('/') .replace(/([^:]\/)\/+/g, '$1'), })) @@ -162,7 +162,8 @@ export const scrapeDirectoryListing = async ( args: ScrapeDirectoryListingArgs ): Promise< { - data: string; + data: ArrayBuffer; + headers: Headers; item: DirectoryListingItem; }[] > => { @@ -174,11 +175,12 @@ export const scrapeDirectoryListing = async ( items.map(async (item) => { const response = args.fetchFileFn ? await args.fetchFileFn(item) - : await fetch(item.path); + : await fetch(item.url); return { item, - data: await response.text(), + data: await response.arrayBuffer(), + headers: response.headers, }; }) ); diff --git a/tests/__snapshots__/parseDirectoryListingHtml.test.ts.snap b/tests/__snapshots__/parseDirectoryListingHtml.test.ts.snap deleted file mode 100644 index c99ac10..0000000 --- a/tests/__snapshots__/parseDirectoryListingHtml.test.ts.snap +++ /dev/null @@ -1,20182 +0,0 @@ -// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html - -exports[`works 1`] = ` -[ - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "41004.supl", - "path": "41004.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "41004.txt", - "path": "41004.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "41008.supl", - "path": "41008.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "41008.txt", - "path": "41008.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "41009.supl", - "path": "41009.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "41009.txt", - "path": "41009.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "41013.supl", - "path": "41013.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "41013.txt", - "path": "41013.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "41025.supl", - "path": "41025.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "41025.txt", - "path": "41025.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "44007.supl", - "path": "44007.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44007.txt", - "path": "44007.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "44009.supl", - "path": "44009.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44009.txt", - "path": "44009.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "44013.supl", - "path": "44013.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44013.txt", - "path": "44013.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "44020.supl", - "path": "44020.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44020.txt", - "path": "44020.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "44025.supl", - "path": "44025.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44025.txt", - "path": "44025.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44041.txt", - "path": "44041.txt", - "size": 944128, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44058.txt", - "path": "44058.txt", - "size": 977920, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44062.txt", - "path": "44062.txt", - "size": 936960, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44063.txt", - "path": "44063.txt", - "size": 949248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44064.txt", - "path": "44064.txt", - "size": 865280, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "44065.supl", - "path": "44065.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44065.txt", - "path": "44065.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44072.txt", - "path": "44072.txt", - "size": 899072, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974800000, - "name": "44085.adcp", - "path": "44085.adcp", - "size": 72704, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974800000, - "name": "44085.spec", - "path": "44085.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "44085.txt", - "path": "44085.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974800000, - "name": "45218.adcp", - "path": "45218.adcp", - "size": 738304, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974800000, - "name": "45218.ocean", - "path": "45218.ocean", - "size": 78848, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974800000, - "name": "45218.spec", - "path": "45218.spec", - "size": 59392, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974800000, - "name": "45218.srad", - "path": "45218.srad", - "size": 31744, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "45218.txt", - "path": "45218.txt", - "size": 378880, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46011.supl", - "path": "46011.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46011.txt", - "path": "46011.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46013.supl", - "path": "46013.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46013.txt", - "path": "46013.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46014.supl", - "path": "46014.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46014.txt", - "path": "46014.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46022.supl", - "path": "46022.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46022.txt", - "path": "46022.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46025.supl", - "path": "46025.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46025.txt", - "path": "46025.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46027.supl", - "path": "46027.supl", - "size": 308224, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46027.txt", - "path": "46027.txt", - "size": 603136, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46028.supl", - "path": "46028.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46028.txt", - "path": "46028.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46029.supl", - "path": "46029.supl", - "size": 26624, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46029.txt", - "path": "46029.txt", - "size": 53248, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46041.supl", - "path": "46041.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46041.txt", - "path": "46041.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46050.supl", - "path": "46050.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46050.txt", - "path": "46050.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46053.supl", - "path": "46053.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46053.txt", - "path": "46053.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46054.supl", - "path": "46054.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46054.txt", - "path": "46054.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46069.supl", - "path": "46069.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46069.txt", - "path": "46069.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46086.supl", - "path": "46086.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46086.txt", - "path": "46086.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974800000, - "name": "46088.supl", - "path": "46088.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46088.txt", - "path": "46088.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974800000, - "name": "46244.data_spec", - "path": "46244.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974800000, - "name": "46244.swdir", - "path": "46244.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974800000, - "name": "46244.swdir2", - "path": "46244.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974800000, - "name": "46244.swr1", - "path": "46244.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974800000, - "name": "46244.swr2", - "path": "46244.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974800000, - "name": "46267.data_spec", - "path": "46267.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974800000, - "name": "46267.swdir", - "path": "46267.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974800000, - "name": "46267.swdir2", - "path": "46267.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974800000, - "name": "46267.swr1", - "path": "46267.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974800000, - "name": "46267.swr2", - "path": "46267.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974800000, - "name": "46268.adcp", - "path": "46268.adcp", - "size": 63488, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974800000, - "name": "46268.data_spec", - "path": "46268.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974800000, - "name": "46268.spec", - "path": "46268.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974800000, - "name": "46268.swdir", - "path": "46268.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974800000, - "name": "46268.swdir2", - "path": "46268.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974800000, - "name": "46268.swr1", - "path": "46268.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974800000, - "name": "46268.swr2", - "path": "46268.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "46268.txt", - "path": "46268.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974800000, - "name": "51214.adcp", - "path": "51214.adcp", - "size": 6042, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974800000, - "name": "51214.data_spec", - "path": "51214.data_spec", - "size": 114688, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974800000, - "name": "51214.spec", - "path": "51214.spec", - "size": 11264, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974800000, - "name": "51214.swdir", - "path": "51214.swdir", - "size": 108544, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974800000, - "name": "51214.swdir2", - "path": "51214.swdir2", - "size": 108544, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974800000, - "name": "51214.swr1", - "path": "51214.swr1", - "size": 106496, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974800000, - "name": "51214.swr2", - "path": "51214.swr2", - "size": 106496, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974800000, - "name": "51214.txt", - "path": "51214.txt", - "size": 15360, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974800000, - "name": "JBYF1.ocean", - "path": "JBYF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974800000, - "name": "JBYF1.rain", - "path": "JBYF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "41082.txt", - "path": "41082.txt", - "size": 592896, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "41083.txt", - "path": "41083.txt", - "size": 512000, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "41108.txt", - "path": "41108.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "41115.txt", - "path": "41115.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "42085.txt", - "path": "42085.txt", - "size": 506880, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "42095.txt", - "path": "42095.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "42099.txt", - "path": "42099.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "44014.txt", - "path": "44014.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "44079.txt", - "path": "44079.txt", - "size": 558080, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "44084.txt", - "path": "44084.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "44090.txt", - "path": "44090.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "44100.txt", - "path": "44100.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45026.txt", - "path": "45026.txt", - "size": 283648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45028.txt", - "path": "45028.txt", - "size": 404480, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45029.txt", - "path": "45029.txt", - "size": 579584, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45165.txt", - "path": "45165.txt", - "size": 276480, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45168.txt", - "path": "45168.txt", - "size": 587776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45170.txt", - "path": "45170.txt", - "size": 284672, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45174.txt", - "path": "45174.txt", - "size": 257024, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45176.txt", - "path": "45176.txt", - "size": 501760, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45186.txt", - "path": "45186.txt", - "size": 468992, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45187.txt", - "path": "45187.txt", - "size": 492544, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45196.txt", - "path": "45196.txt", - "size": 464896, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45198.txt", - "path": "45198.txt", - "size": 307200, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45200.txt", - "path": "45200.txt", - "size": 256000, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45201.txt", - "path": "45201.txt", - "size": 204800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45202.txt", - "path": "45202.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45203.txt", - "path": "45203.txt", - "size": 600064, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45204.txt", - "path": "45204.txt", - "size": 601088, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45205.txt", - "path": "45205.txt", - "size": 287744, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45206.txt", - "path": "45206.txt", - "size": 551936, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45207.txt", - "path": "45207.txt", - "size": 413696, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45208.txt", - "path": "45208.txt", - "size": 508928, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "45209.txt", - "path": "45209.txt", - "size": 191488, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46097.txt", - "path": "46097.txt", - "size": 494592, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46108.txt", - "path": "46108.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46237.txt", - "path": "46237.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46239.txt", - "path": "46239.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46244.txt", - "path": "46244.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46275.txt", - "path": "46275.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46277.txt", - "path": "46277.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46278.txt", - "path": "46278.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "46279.txt", - "path": "46279.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51000.txt", - "path": "51000.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51001.txt", - "path": "51001.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51003.txt", - "path": "51003.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51004.txt", - "path": "51004.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51101.txt", - "path": "51101.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51206.txt", - "path": "51206.txt", - "size": 188416, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51211.txt", - "path": "51211.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "51212.txt", - "path": "51212.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "52202.txt", - "path": "52202.txt", - "size": 80896, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "52212.txt", - "path": "52212.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974560000, - "name": "52214.txt", - "path": "52214.txt", - "size": 200704, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "41082.ocean", - "path": "41082.ocean", - "size": 353280, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "41082.spec", - "path": "41082.spec", - "size": 73728, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "41082.srad", - "path": "41082.srad", - "size": 240640, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "41083.ocean", - "path": "41083.ocean", - "size": 381952, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "41083.spec", - "path": "41083.spec", - "size": 63488, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "41083.srad", - "path": "41083.srad", - "size": 207872, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "41108.adcp", - "path": "41108.adcp", - "size": 71680, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "41108.spec", - "path": "41108.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "41115.data_spec", - "path": "41115.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "41115.spec", - "path": "41115.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "41115.swdir", - "path": "41115.swdir", - "size": 946176, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "41115.swdir2", - "path": "41115.swdir2", - "size": 941056, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "41115.swr1", - "path": "41115.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "41115.swr2", - "path": "41115.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "42095.data_spec", - "path": "42095.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "42095.spec", - "path": "42095.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "42095.swdir", - "path": "42095.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "42095.swdir2", - "path": "42095.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "42095.swr1", - "path": "42095.swr1", - "size": 1258291, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "42095.swr2", - "path": "42095.swr2", - "size": 1258291, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "42099.spec", - "path": "42099.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "44014.supl", - "path": "44014.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "44041.ocean", - "path": "44041.ocean", - "size": 821248, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44042.adcp", - "path": "44042.adcp", - "size": 329728, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "44042.ocean", - "path": "44042.ocean", - "size": 759808, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "44042.txt", - "path": "44042.txt", - "size": 876544, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44058.adcp", - "path": "44058.adcp", - "size": 367616, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "44058.ocean", - "path": "44058.ocean", - "size": 848896, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44062.adcp", - "path": "44062.adcp", - "size": 351232, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "44062.ocean", - "path": "44062.ocean", - "size": 410624, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44063.adcp", - "path": "44063.adcp", - "size": 356352, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "44063.ocean", - "path": "44063.ocean", - "size": 823296, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44064.adcp", - "path": "44064.adcp", - "size": 324608, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "44064.ocean", - "path": "44064.ocean", - "size": 748544, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44072.adcp", - "path": "44072.adcp", - "size": 337920, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "44079.ocean", - "path": "44079.ocean", - "size": 465920, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "44079.spec", - "path": "44079.spec", - "size": 52224, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "44079.srad", - "path": "44079.srad", - "size": 226304, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44084.adcp", - "path": "44084.adcp", - "size": 69632, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "44084.spec", - "path": "44084.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44090.adcp", - "path": "44090.adcp", - "size": 71680, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "44090.spec", - "path": "44090.spec", - "size": 133120, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "44097.data_spec", - "path": "44097.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "44097.swdir", - "path": "44097.swdir", - "size": 982016, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "44097.swdir2", - "path": "44097.swdir2", - "size": 979968, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "44097.swr1", - "path": "44097.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "44097.swr2", - "path": "44097.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "44100.adcp", - "path": "44100.adcp", - "size": 71680, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "44100.spec", - "path": "44100.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "45026.adcp", - "path": "45026.adcp", - "size": 1153434, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45026.ocean", - "path": "45026.ocean", - "size": 244736, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45026.spec", - "path": "45026.spec", - "size": 211968, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45029.ocean", - "path": "45029.ocean", - "size": 501760, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45029.spec", - "path": "45029.spec", - "size": 433152, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "45165.adcp", - "path": "45165.adcp", - "size": 362496, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45165.spec", - "path": "45165.spec", - "size": 205824, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "45165.srad", - "path": "45165.srad", - "size": 111616, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45168.ocean", - "path": "45168.ocean", - "size": 507904, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45168.spec", - "path": "45168.spec", - "size": 438272, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45170.ocean", - "path": "45170.ocean", - "size": 245760, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45170.spec", - "path": "45170.spec", - "size": 211968, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "45170.srad", - "path": "45170.srad", - "size": 114688, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45174.spec", - "path": "45174.spec", - "size": 191488, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "45174.srad", - "path": "45174.srad", - "size": 103424, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45176.ocean", - "path": "45176.ocean", - "size": 433152, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45176.spec", - "path": "45176.spec", - "size": 373760, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "45186.adcp", - "path": "45186.adcp", - "size": 125952, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45186.spec", - "path": "45186.spec", - "size": 350208, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "45187.adcp", - "path": "45187.adcp", - "size": 128000, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45187.spec", - "path": "45187.spec", - "size": 368640, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45196.ocean", - "path": "45196.ocean", - "size": 401408, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45196.spec", - "path": "45196.spec", - "size": 346112, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45197.ocean", - "path": "45197.ocean", - "size": 474112, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "45198.ocean", - "path": "45198.ocean", - "size": 264192, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45198.spec", - "path": "45198.spec", - "size": 228352, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45201.spec", - "path": "45201.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "45201.srad", - "path": "45201.srad", - "size": 81920, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45202.spec", - "path": "45202.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "45202.srad", - "path": "45202.srad", - "size": 81920, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45203.spec", - "path": "45203.spec", - "size": 448512, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974500000, - "name": "45203.srad", - "path": "45203.srad", - "size": 243712, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45204.spec", - "path": "45204.spec", - "size": 448512, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45205.spec", - "path": "45205.spec", - "size": 211968, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45206.spec", - "path": "45206.spec", - "size": 367616, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45207.spec", - "path": "45207.spec", - "size": 309248, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45208.spec", - "path": "45208.spec", - "size": 379904, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "45209.spec", - "path": "45209.spec", - "size": 124928, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "46088.adcp", - "path": "46088.adcp", - "size": 228352, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "46108.adcp", - "path": "46108.adcp", - "size": 70656, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46108.data_spec", - "path": "46108.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46108.spec", - "path": "46108.spec", - "size": 147456, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "46237.adcp", - "path": "46237.adcp", - "size": 73728, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46237.data_spec", - "path": "46237.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46237.spec", - "path": "46237.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46237.swdir", - "path": "46237.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46237.swdir2", - "path": "46237.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46237.swr1", - "path": "46237.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46237.swr2", - "path": "46237.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46239.data_spec", - "path": "46239.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46239.spec", - "path": "46239.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46239.swdir", - "path": "46239.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46239.swdir2", - "path": "46239.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46239.swr1", - "path": "46239.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46239.swr2", - "path": "46239.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46243.data_spec", - "path": "46243.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46243.swdir", - "path": "46243.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46243.swdir2", - "path": "46243.swdir2", - "size": 989184, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46243.swr1", - "path": "46243.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46243.swr2", - "path": "46243.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "46244.adcp", - "path": "46244.adcp", - "size": 60416, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46244.spec", - "path": "46244.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46251.data_spec", - "path": "46251.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46251.swdir", - "path": "46251.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46251.swdir2", - "path": "46251.swdir2", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46251.swr1", - "path": "46251.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46251.swr2", - "path": "46251.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46266.data_spec", - "path": "46266.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46266.swdir", - "path": "46266.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46266.swdir2", - "path": "46266.swdir2", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46266.swr1", - "path": "46266.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46266.swr2", - "path": "46266.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46275.data_spec", - "path": "46275.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46275.spec", - "path": "46275.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46275.swdir", - "path": "46275.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46275.swdir2", - "path": "46275.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46275.swr1", - "path": "46275.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46275.swr2", - "path": "46275.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46277.data_spec", - "path": "46277.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46277.spec", - "path": "46277.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46277.swdir", - "path": "46277.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46277.swdir2", - "path": "46277.swdir2", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46277.swr1", - "path": "46277.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46277.swr2", - "path": "46277.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "46278.adcp", - "path": "46278.adcp", - "size": 73728, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46278.data_spec", - "path": "46278.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46278.spec", - "path": "46278.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46278.swdir", - "path": "46278.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46278.swdir2", - "path": "46278.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46278.swr1", - "path": "46278.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46278.swr2", - "path": "46278.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "46279.data_spec", - "path": "46279.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "46279.spec", - "path": "46279.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "46279.swdir", - "path": "46279.swdir", - "size": 988160, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "46279.swdir2", - "path": "46279.swdir2", - "size": 986112, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "46279.swr1", - "path": "46279.swr1", - "size": 925696, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "46279.swr2", - "path": "46279.swr2", - "size": 921600, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "51000.supl", - "path": "51000.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "51001.supl", - "path": "51001.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "51002.supl", - "path": "51002.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "51002.txt", - "path": "51002.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "51003.supl", - "path": "51003.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "51004.supl", - "path": "51004.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "51101.supl", - "path": "51101.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "51206.data_spec", - "path": "51206.data_spec", - "size": 4710, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "51206.spec", - "path": "51206.spec", - "size": 771, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "51206.swdir", - "path": "51206.swdir", - "size": 4403, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "51206.swdir2", - "path": "51206.swdir2", - "size": 4403, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "51206.swr1", - "path": "51206.swr1", - "size": 4301, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "51206.swr2", - "path": "51206.swr2", - "size": 4301, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "51211.adcp", - "path": "51211.adcp", - "size": 53248, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "51211.data_spec", - "path": "51211.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "51211.spec", - "path": "51211.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "51211.swdir", - "path": "51211.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "51211.swdir2", - "path": "51211.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "51211.swr1", - "path": "51211.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "51211.swr2", - "path": "51211.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974500000, - "name": "51212.adcp", - "path": "51212.adcp", - "size": 69632, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "51212.data_spec", - "path": "51212.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "51212.spec", - "path": "51212.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "51212.swdir", - "path": "51212.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "51212.swdir2", - "path": "51212.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "51212.swr1", - "path": "51212.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "51212.swr2", - "path": "51212.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "52202.data_spec", - "path": "52202.data_spec", - "size": 400384, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "52202.swdir", - "path": "52202.swdir", - "size": 371712, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "52202.swdir2", - "path": "52202.swdir2", - "size": 372736, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "52202.swr1", - "path": "52202.swr1", - "size": 369664, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "52202.swr2", - "path": "52202.swr2", - "size": 369664, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "52212.data_spec", - "path": "52212.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "52212.spec", - "path": "52212.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "52212.swdir", - "path": "52212.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "52212.swdir2", - "path": "52212.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "52212.swr1", - "path": "52212.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "52212.swr2", - "path": "52212.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974500000, - "name": "52214.data_spec", - "path": "52214.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974500000, - "name": "52214.spec", - "path": "52214.spec", - "size": 149504, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974500000, - "name": "52214.swdir", - "path": "52214.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974500000, - "name": "52214.swdir2", - "path": "52214.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974500000, - "name": "52214.swr1", - "path": "52214.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974500000, - "name": "52214.swr2", - "path": "52214.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "ACFS1.ocean", - "path": "ACFS1.ocean", - "size": 251904, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "AJXA2.txt", - "path": "AJXA2.txt", - "size": 596992, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "ANMN6.txt", - "path": "ANMN6.txt", - "size": 403456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "ANRN6.ocean", - "path": "ANRN6.ocean", - "size": 351232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "APMA2.txt", - "path": "APMA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BBNF1.ocean", - "path": "BBNF1.ocean", - "size": 135168, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BBNF1.txt", - "path": "BBNF1.txt", - "size": 159744, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BBSF1.ocean", - "path": "BBSF1.ocean", - "size": 135168, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BBSF1.txt", - "path": "BBSF1.txt", - "size": 159744, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BDVF1.ocean", - "path": "BDVF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "BDVF1.rain", - "path": "BDVF1.rain", - "size": 20480, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BEXA2.txt", - "path": "BEXA2.txt", - "size": 542720, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BHRI3.txt", - "path": "BHRI3.txt", - "size": 509952, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BIGM4.txt", - "path": "BIGM4.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BKYF1.ocean", - "path": "BKYF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "BKYF1.rain", - "path": "BKYF1.rain", - "size": 20480, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BNKF1.ocean", - "path": "BNKF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "BNKF1.rain", - "path": "BNKF1.rain", - "size": 20480, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BOBF1.ocean", - "path": "BOBF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "BOBF1.rain", - "path": "BOBF1.rain", - "size": 20480, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BRIM2.ocean", - "path": "BRIM2.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BSBM4.txt", - "path": "BSBM4.txt", - "size": 616448, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BSKF1.ocean", - "path": "BSKF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "BSKF1.rain", - "path": "BSKF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BSKF1.txt", - "path": "BSKF1.txt", - "size": 75776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "BSLM2.txt", - "path": "BSLM2.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "BWSF1.ocean", - "path": "BWSF1.ocean", - "size": 70656, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "BWSF1.rain", - "path": "BWSF1.rain", - "size": 21504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "CANF1.ocean", - "path": "CANF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "CANF1.rain", - "path": "CANF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "CBRW3.txt", - "path": "CBRW3.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "CDXA2.txt", - "path": "CDXA2.txt", - "size": 390144, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "CHQO3.ocean", - "path": "CHQO3.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "CMLN3.txt", - "path": "CMLN3.txt", - "size": 9011, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "CNBF1.ocean", - "path": "CNBF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "CNBF1.rain", - "path": "CNBF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "CNII2.txt", - "path": "CNII2.txt", - "size": 401408, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "CPXA2.txt", - "path": "CPXA2.txt", - "size": 574464, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "CSXA2.txt", - "path": "CSXA2.txt", - "size": 590848, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "CWAF1.ocean", - "path": "CWAF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "CWAF1.rain", - "path": "CWAF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "CWAF1.txt", - "path": "CWAF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "CWQT2.ocean", - "path": "CWQT2.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "DHXA2.txt", - "path": "DHXA2.txt", - "size": 589824, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "DKKF1.ocean", - "path": "DKKF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "DKKF1.rain", - "path": "DKKF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "DPLA2.txt", - "path": "DPLA2.txt", - "size": 583680, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "DPOA2.txt", - "path": "DPOA2.txt", - "size": 584704, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "DPXA2.txt", - "path": "DPXA2.txt", - "size": 584704, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "ELQC1.ocean", - "path": "ELQC1.ocean", - "size": 332800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "ERXA2.txt", - "path": "ERXA2.txt", - "size": 600064, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "FFFC1.ocean", - "path": "FFFC1.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "FPTM4.txt", - "path": "FPTM4.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "GBIF1.ocean", - "path": "GBIF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "GBIF1.rain", - "path": "GBIF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "GBTF1.ocean", - "path": "GBTF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "GBTF1.rain", - "path": "GBTF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "GBXA2.txt", - "path": "GBXA2.txt", - "size": 589824, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "GEXA2.txt", - "path": "GEXA2.txt", - "size": 591872, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "GIXA2.txt", - "path": "GIXA2.txt", - "size": 599040, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "GPXA2.txt", - "path": "GPXA2.txt", - "size": 558080, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "GRMM4.txt", - "path": "GRMM4.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "GTLM4.txt", - "path": "GTLM4.txt", - "size": 667648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "GUXA2.txt", - "path": "GUXA2.txt", - "size": 599040, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "HAXA2.txt", - "path": "HAXA2.txt", - "size": 598016, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "HBMN6.ocean", - "path": "HBMN6.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "HBXC1.ocean", - "path": "HBXC1.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "HBXC1.txt", - "path": "HBXC1.txt", - "size": 404480, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "HCEF1.ocean", - "path": "HCEF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "HCEF1.rain", - "path": "HCEF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "HMSA2.txt", - "path": "HMSA2.txt", - "size": 582656, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "ICYA2.txt", - "path": "ICYA2.txt", - "size": 372736, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "JCRN4.txt", - "path": "JCRN4.txt", - "size": 406528, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "JKYF1.ocean", - "path": "JKYF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "JKYF1.rain", - "path": "JKYF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "JLXA2.txt", - "path": "JLXA2.txt", - "size": 587776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "JMLA2.txt", - "path": "JMLA2.txt", - "size": 602112, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "JNGA2.txt", - "path": "JNGA2.txt", - "size": 590848, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "KEXA2.txt", - "path": "KEXA2.txt", - "size": 598016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "KGXA2.txt", - "path": "KGXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "KMXA2.txt", - "path": "KMXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "KNXA2.txt", - "path": "KNXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "KOZA2.txt", - "path": "KOZA2.txt", - "size": 550912, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "KP59.txt", - "path": "KP59.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "LBSF1.ocean", - "path": "LBSF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "LBSF1.rain", - "path": "LBSF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "LIXA2.txt", - "path": "LIXA2.txt", - "size": 596992, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "LMDF1.ocean", - "path": "LMDF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "LMDF1.rain", - "path": "LMDF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "LMRF1.ocean", - "path": "LMRF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "LMRF1.rain", - "path": "LMRF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "LONF1.supl", - "path": "LONF1.supl", - "size": 306176, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "LONF1.txt", - "path": "LONF1.txt", - "size": 600064, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "LRIF1.ocean", - "path": "LRIF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "LRIF1.rain", - "path": "LRIF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "LRKF1.ocean", - "path": "LRKF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "LRKF1.rain", - "path": "LRKF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "LSNF1.ocean", - "path": "LSNF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "LSNF1.rain", - "path": "LSNF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "MDKF1.ocean", - "path": "MDKF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "MDKF1.rain", - "path": "MDKF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "MIXA2.txt", - "path": "MIXA2.txt", - "size": 589824, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "MNBF1.ocean", - "path": "MNBF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "MNBF1.rain", - "path": "MNBF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "MRNA2.txt", - "path": "MRNA2.txt", - "size": 602112, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "MRYA2.txt", - "path": "MRYA2.txt", - "size": 568320, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "MUKF1.ocean", - "path": "MUKF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "MVXA2.txt", - "path": "MVXA2.txt", - "size": 598016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "MXXA2.txt", - "path": "MXXA2.txt", - "size": 596992, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "NABM4.txt", - "path": "NABM4.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "NKLA2.txt", - "path": "NKLA2.txt", - "size": 584704, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "NKXA2.txt", - "path": "NKXA2.txt", - "size": 595968, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "NLXA2.txt", - "path": "NLXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "NMXA2.txt", - "path": "NMXA2.txt", - "size": 588800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "NPXN6.txt", - "path": "NPXN6.txt", - "size": 399360, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "NRRF1.ocean", - "path": "NRRF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "NRRF1.rain", - "path": "NRRF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "NSXA2.txt", - "path": "NSXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "OTNM4.txt", - "path": "OTNM4.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "OWDO1.ocean", - "path": "OWDO1.ocean", - "size": 351232, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "OWSO1.ocean", - "path": "OWSO1.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PAUA2.txt", - "path": "PAUA2.txt", - "size": 581632, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PAXA2.txt", - "path": "PAXA2.txt", - "size": 522240, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PBFW1.txt", - "path": "PBFW1.txt", - "size": 397312, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "PBLW1.ocean", - "path": "PBLW1.ocean", - "size": 337920, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PCLM4.txt", - "path": "PCLM4.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PCXA2.txt", - "path": "PCXA2.txt", - "size": 588800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PEXA2.txt", - "path": "PEXA2.txt", - "size": 588800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PGXA2.txt", - "path": "PGXA2.txt", - "size": 592896, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "PKYF1.ocean", - "path": "PKYF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "PKYF1.rain", - "path": "PKYF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PNGW3.txt", - "path": "PNGW3.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PPXA2.txt", - "path": "PPXA2.txt", - "size": 548864, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PTLA2.txt", - "path": "PTLA2.txt", - "size": 602112, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "PWAW3.txt", - "path": "PWAW3.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "RIXA2.txt", - "path": "RIXA2.txt", - "size": 596992, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "RYEC1.ocean", - "path": "RYEC1.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "SANF1.supl", - "path": "SANF1.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SANF1.txt", - "path": "SANF1.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "SCLD1.ocean", - "path": "SCLD1.ocean", - "size": 249856, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "SCQC1.ocean", - "path": "SCQC1.ocean", - "size": 347136, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SCXA2.txt", - "path": "SCXA2.txt", - "size": 595968, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SGXA2.txt", - "path": "SGXA2.txt", - "size": 581632, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SHXA2.txt", - "path": "SHXA2.txt", - "size": 596992, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974500000, - "name": "SISW1.supl", - "path": "SISW1.supl", - "size": 306176, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SISW1.txt", - "path": "SISW1.txt", - "size": 600064, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SKXA2.txt", - "path": "SKXA2.txt", - "size": 594944, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "SLOO3.ocean", - "path": "SLOO3.ocean", - "size": 330752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SLVM5.txt", - "path": "SLVM5.txt", - "size": 651264, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SLXA2.txt", - "path": "SLXA2.txt", - "size": 592896, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SMKF1.txt", - "path": "SMKF1.txt", - "size": 599040, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SNTO3.txt", - "path": "SNTO3.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SPXA2.txt", - "path": "SPXA2.txt", - "size": 589824, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "SREF1.ocean", - "path": "SREF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "SREF1.rain", - "path": "SREF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SRXA2.txt", - "path": "SRXA2.txt", - "size": 588800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "STXA2.txt", - "path": "STXA2.txt", - "size": 594944, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SVXA2.txt", - "path": "SVXA2.txt", - "size": 594944, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SWXA2.txt", - "path": "SWXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SXHW3.txt", - "path": "SXHW3.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "SXXA2.txt", - "path": "SXXA2.txt", - "size": 590848, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "TBYF1.ocean", - "path": "TBYF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "TBYF1.rain", - "path": "TBYF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "TCSV2.ocean", - "path": "TCSV2.ocean", - "size": 351232, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "TCVF1.ocean", - "path": "TCVF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "TCVF1.rain", - "path": "TCVF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "TDPC1.ocean", - "path": "TDPC1.ocean", - "size": 273408, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "TDPC1.txt", - "path": "TDPC1.txt", - "size": 315392, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "THRF1.ocean", - "path": "THRF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "THRF1.rain", - "path": "THRF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "TKEA2.txt", - "path": "TKEA2.txt", - "size": 602112, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "TPEF1.ocean", - "path": "TPEF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "TPEF1.rain", - "path": "TPEF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "TRRF1.ocean", - "path": "TRRF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "TRRF1.rain", - "path": "TRRF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "TWCO1.txt", - "path": "TWCO1.txt", - "size": 113664, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "UQXA2.txt", - "path": "UQXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "VDXA2.txt", - "path": "VDXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "WCXA2.txt", - "path": "WCXA2.txt", - "size": 583680, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "WEBM1.ocean", - "path": "WEBM1.ocean", - "size": 158720, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "WGXA2.txt", - "path": "WGXA2.txt", - "size": 589824, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "WIWF1.ocean", - "path": "WIWF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "WIWF1.rain", - "path": "WIWF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "WIXA2.txt", - "path": "WIXA2.txt", - "size": 585728, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "WPLF1.ocean", - "path": "WPLF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "WPLF1.rain", - "path": "WPLF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "WRBF1.ocean", - "path": "WRBF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "WRBF1.rain", - "path": "WRBF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "WRXA2.txt", - "path": "WRXA2.txt", - "size": 572416, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "WWEF1.ocean", - "path": "WWEF1.ocean", - "size": 64512, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718974500000, - "name": "WWEF1.rain", - "path": "WWEF1.rain", - "size": 19456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "WWEF1.txt", - "path": "WWEF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "WYBS1.ocean", - "path": "WYBS1.ocean", - "size": 351232, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974500000, - "name": "WYSS1.ocean", - "path": "WYSS1.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "YRSV2.txt", - "path": "YRSV2.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974500000, - "name": "ship_obs.txt", - "path": "ship_obs.txt", - "size": 1572864, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41001.supl", - "path": "41001.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41001.txt", - "path": "41001.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41002.supl", - "path": "41002.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41002.txt", - "path": "41002.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41010.supl", - "path": "41010.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41010.txt", - "path": "41010.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41040.supl", - "path": "41040.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41040.txt", - "path": "41040.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41043.supl", - "path": "41043.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41043.txt", - "path": "41043.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41044.supl", - "path": "41044.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41044.txt", - "path": "41044.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41046.supl", - "path": "41046.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41046.txt", - "path": "41046.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41047.supl", - "path": "41047.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41047.txt", - "path": "41047.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "41049.supl", - "path": "41049.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41049.txt", - "path": "41049.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41053.txt", - "path": "41053.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41056.txt", - "path": "41056.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "41065.spec", - "path": "41065.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41065.txt", - "path": "41065.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "41067.spec", - "path": "41067.spec", - "size": 91136, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41067.txt", - "path": "41067.txt", - "size": 167936, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "41070.spec", - "path": "41070.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41070.txt", - "path": "41070.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41113.txt", - "path": "41113.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41114.txt", - "path": "41114.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "41117.data_spec", - "path": "41117.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "41117.spec", - "path": "41117.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "41117.swdir", - "path": "41117.swdir", - "size": 959488, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "41117.swdir2", - "path": "41117.swdir2", - "size": 963584, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "41117.swr1", - "path": "41117.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "41117.swr2", - "path": "41117.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41117.txt", - "path": "41117.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41122.txt", - "path": "41122.txt", - "size": 95232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "41159.txt", - "path": "41159.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42001.supl", - "path": "42001.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42001.txt", - "path": "42001.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42002.supl", - "path": "42002.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42002.txt", - "path": "42002.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42012.supl", - "path": "42012.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42012.txt", - "path": "42012.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974200000, - "name": "42013.adcp", - "path": "42013.adcp", - "size": 360448, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42019.supl", - "path": "42019.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42019.txt", - "path": "42019.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42020.supl", - "path": "42020.supl", - "size": 269312, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42020.txt", - "path": "42020.txt", - "size": 528384, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42035.supl", - "path": "42035.supl", - "size": 275456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42035.txt", - "path": "42035.txt", - "size": 539648, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42036.supl", - "path": "42036.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42036.txt", - "path": "42036.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42040.supl", - "path": "42040.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42040.txt", - "path": "42040.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42055.supl", - "path": "42055.supl", - "size": 257024, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42055.txt", - "path": "42055.txt", - "size": 602112, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42056.supl", - "path": "42056.supl", - "size": 302080, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42056.txt", - "path": "42056.txt", - "size": 590848, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42057.txt", - "path": "42057.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42058.supl", - "path": "42058.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42058.txt", - "path": "42058.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42059.supl", - "path": "42059.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42059.txt", - "path": "42059.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "42060.supl", - "path": "42060.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42060.txt", - "path": "42060.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42091.txt", - "path": "42091.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42097.txt", - "path": "42097.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "42098.data_spec", - "path": "42098.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "42098.spec", - "path": "42098.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "42098.swdir", - "path": "42098.swdir", - "size": 947200, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "42098.swdir2", - "path": "42098.swdir2", - "size": 946176, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "42098.swr1", - "path": "42098.swr1", - "size": 888832, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "42098.swr2", - "path": "42098.swr2", - "size": 888832, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "42098.txt", - "path": "42098.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "44008.supl", - "path": "44008.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44008.txt", - "path": "44008.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "44011.supl", - "path": "44011.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44011.txt", - "path": "44011.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44018.txt", - "path": "44018.txt", - "size": 200704, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "44027.data_spec", - "path": "44027.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "44027.supl", - "path": "44027.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "44027.swdir", - "path": "44027.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "44027.swdir2", - "path": "44027.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "44027.swr1", - "path": "44027.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "44027.swr2", - "path": "44027.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44027.txt", - "path": "44027.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44086.txt", - "path": "44086.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44091.txt", - "path": "44091.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "44097.spec", - "path": "44097.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44097.txt", - "path": "44097.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44098.txt", - "path": "44098.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "44099.txt", - "path": "44099.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "45004.supl", - "path": "45004.supl", - "size": 312320, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "45004.txt", - "path": "45004.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "45006.data_spec", - "path": "45006.data_spec", - "size": 150528, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "45023.txt", - "path": "45023.txt", - "size": 256000, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "45025.txt", - "path": "45025.txt", - "size": 250880, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974200000, - "name": "45027.ocean", - "path": "45027.ocean", - "size": 482304, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "45027.spec", - "path": "45027.spec", - "size": 395264, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "45027.txt", - "path": "45027.txt", - "size": 530432, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974200000, - "name": "45028.ocean", - "path": "45028.ocean", - "size": 482304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "45175.txt", - "path": "45175.txt", - "size": 258048, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "45216.txt", - "path": "45216.txt", - "size": 131072, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46001.data_spec", - "path": "46001.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46001.swdir", - "path": "46001.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46001.swdir2", - "path": "46001.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46001.swr1", - "path": "46001.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46001.swr2", - "path": "46001.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "46005.supl", - "path": "46005.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46005.txt", - "path": "46005.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "46006.supl", - "path": "46006.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46006.txt", - "path": "46006.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46011.data_spec", - "path": "46011.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46011.swdir", - "path": "46011.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46011.swdir2", - "path": "46011.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46011.swr1", - "path": "46011.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46011.swr2", - "path": "46011.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46013.data_spec", - "path": "46013.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46013.swdir", - "path": "46013.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46013.swdir2", - "path": "46013.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46013.swr1", - "path": "46013.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46013.swr2", - "path": "46013.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46022.data_spec", - "path": "46022.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46022.swdir", - "path": "46022.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46022.swdir2", - "path": "46022.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46022.swr1", - "path": "46022.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46022.swr2", - "path": "46022.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46025.data_spec", - "path": "46025.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46025.swdir", - "path": "46025.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46025.swdir2", - "path": "46025.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46025.swr1", - "path": "46025.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46025.swr2", - "path": "46025.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46027.data_spec", - "path": "46027.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46027.swdir", - "path": "46027.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46027.swdir2", - "path": "46027.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46027.swr1", - "path": "46027.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46027.swr2", - "path": "46027.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46029.data_spec", - "path": "46029.data_spec", - "size": 123904, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46029.swdir", - "path": "46029.swdir", - "size": 122880, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46029.swdir2", - "path": "46029.swdir2", - "size": 121856, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46029.swr1", - "path": "46029.swr1", - "size": 116736, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46029.swr2", - "path": "46029.swr2", - "size": 116736, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "46047.supl", - "path": "46047.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46047.txt", - "path": "46047.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "46059.supl", - "path": "46059.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46059.txt", - "path": "46059.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46066.data_spec", - "path": "46066.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46066.swdir", - "path": "46066.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46066.swdir2", - "path": "46066.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46066.swr1", - "path": "46066.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46066.swr2", - "path": "46066.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46069.data_spec", - "path": "46069.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46069.swdir", - "path": "46069.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46069.swdir2", - "path": "46069.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46069.swr1", - "path": "46069.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46069.swr2", - "path": "46069.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46075.data_spec", - "path": "46075.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46075.swdir", - "path": "46075.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46075.swdir2", - "path": "46075.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46075.swr1", - "path": "46075.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46075.swr2", - "path": "46075.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46078.data_spec", - "path": "46078.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "46078.supl", - "path": "46078.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46078.swdir", - "path": "46078.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46078.swdir2", - "path": "46078.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46078.swr1", - "path": "46078.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46078.swr2", - "path": "46078.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46078.txt", - "path": "46078.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718974200000, - "name": "46080.data_spec", - "path": "46080.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718974200000, - "name": "46080.swdir", - "path": "46080.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718974200000, - "name": "46080.swdir2", - "path": "46080.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718974200000, - "name": "46080.swr1", - "path": "46080.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718974200000, - "name": "46080.swr2", - "path": "46080.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718974200000, - "name": "46087.adcp", - "path": "46087.adcp", - "size": 228352, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "46087.supl", - "path": "46087.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46087.txt", - "path": "46087.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718974200000, - "name": "46097.ocean", - "path": "46097.ocean", - "size": 428032, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "46097.spec", - "path": "46097.spec", - "size": 61440, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718974200000, - "name": "46097.srad", - "path": "46097.srad", - "size": 200704, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46214.txt", - "path": "46214.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46218.txt", - "path": "46218.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46219.txt", - "path": "46219.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "46243.spec", - "path": "46243.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46243.txt", - "path": "46243.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "46251.spec", - "path": "46251.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46251.txt", - "path": "46251.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46254.txt", - "path": "46254.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "46266.spec", - "path": "46266.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "46266.txt", - "path": "46266.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "51201.txt", - "path": "51201.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "51208.txt", - "path": "51208.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "51209.txt", - "path": "51209.txt", - "size": 28672, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718974200000, - "name": "52202.spec", - "path": "52202.spec", - "size": 61440, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "AAMC1.txt", - "path": "AAMC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ACYN4.txt", - "path": "ACYN4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ADKA2.txt", - "path": "ADKA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "AGCM4.txt", - "path": "AGCM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "AGXC1.txt", - "path": "AGXC1.txt", - "size": 687104, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ALIA2.txt", - "path": "ALIA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ALXN6.txt", - "path": "ALXN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ANTA2.txt", - "path": "ANTA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ANVC1.txt", - "path": "ANVC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "APAM2.txt", - "path": "APAM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "APRP7.txt", - "path": "APRP7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ATGM1.txt", - "path": "ATGM1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ATKA2.txt", - "path": "ATKA2.txt", - "size": 977920, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BATN6.txt", - "path": "BATN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BAXC1.txt", - "path": "BAXC1.txt", - "size": 694272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BDSP1.txt", - "path": "BDSP1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BFTN7.txt", - "path": "BFTN7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BHBM3.txt", - "path": "BHBM3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BISM2.txt", - "path": "BISM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BLTM2.txt", - "path": "BLTM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BLTM3.txt", - "path": "BLTM3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BMTW1.txt", - "path": "BMTW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BRHC3.txt", - "path": "BRHC3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BRND1.txt", - "path": "BRND1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BUFN6.txt", - "path": "BUFN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "BZBM3.txt", - "path": "BZBM3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CAMM2.txt", - "path": "CAMM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CASM1.txt", - "path": "CASM1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CBCM2.txt", - "path": "CBCM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CECC1.txt", - "path": "CECC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CFWM1.txt", - "path": "CFWM1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CHBV2.txt", - "path": "CHBV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CHCM2.txt", - "path": "CHCM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CHTM3.txt", - "path": "CHTM3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CHTS1.txt", - "path": "CHTS1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CHYV2.txt", - "path": "CHYV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CHYW1.txt", - "path": "CHYW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CMAN4.txt", - "path": "CMAN4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CMTI2.txt", - "path": "CMTI2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CNDO1.txt", - "path": "CNDO1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "COVM2.txt", - "path": "COVM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CPMW1.txt", - "path": "CPMW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CPNW1.txt", - "path": "CPNW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CPTR1.txt", - "path": "CPTR1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CPVM2.txt", - "path": "CPVM2.txt", - "size": 876544, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CRVA2.txt", - "path": "CRVA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "CRYV2.txt", - "path": "CRYV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "DELD1.txt", - "path": "DELD1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "DOMV2.txt", - "path": "DOMV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "DPXC1.txt", - "path": "DPXC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "DTLM4.txt", - "path": "DTLM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "DUKN7.txt", - "path": "DUKN7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "DULM5.txt", - "path": "DULM5.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ELFA2.txt", - "path": "ELFA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "EREP1.txt", - "path": "EREP1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FAIO1.txt", - "path": "FAIO1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FOXR1.txt", - "path": "FOXR1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FPKG1.txt", - "path": "FPKG1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FRCB6.txt", - "path": "FRCB6.txt", - "size": 970752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FRVM3.txt", - "path": "FRVM3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FRXM3.txt", - "path": "FRXM3.txt", - "size": 875520, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FSKM2.txt", - "path": "FSKM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FTGM4.txt", - "path": "FTGM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "FTPC1.txt", - "path": "FTPC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "GBWW3.txt", - "path": "GBWW3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "GDMM5.txt", - "path": "GDMM5.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "GSLM4.txt", - "path": "GSLM4.txt", - "size": 603136, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "HCGN7.txt", - "path": "HCGN7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "HLNM4.txt", - "path": "HLNM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "HRBM4.txt", - "path": "HRBM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "HWPM2.txt", - "path": "HWPM2.txt", - "size": 187392, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ICAC1.txt", - "path": "ICAC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ILOH1.txt", - "path": "ILOH1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ITKA2.txt", - "path": "ITKA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "JMPN7.txt", - "path": "JMPN7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "JNEA2.txt", - "path": "JNEA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KBMG1.txt", - "path": "KBMG1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KDAA2.txt", - "path": "KDAA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KECA2.txt", - "path": "KECA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KGCA2.txt", - "path": "KGCA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KGVW.txt", - "path": "KGVW.txt", - "size": 286720, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KLIH1.txt", - "path": "KLIH1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KLMW1.txt", - "path": "KLMW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KPTN6.txt", - "path": "KPTN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KPTV2.txt", - "path": "KPTV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KWHH1.txt", - "path": "KWHH1.txt", - "size": 991232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KWJP8.txt", - "path": "KWJP8.txt", - "size": 992256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "KWNW3.txt", - "path": "KWNW3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LDTM4.txt", - "path": "LDTM4.txt", - "size": 991232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LJAC1.txt", - "path": "LJAC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LNDC1.txt", - "path": "LNDC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LOPW1.txt", - "path": "LOPW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LORO1.txt", - "path": "LORO1.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LPNM4.txt", - "path": "LPNM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LTRM4.txt", - "path": "LTRM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LWSD1.txt", - "path": "LWSD1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "LWTV2.txt", - "path": "LWTV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MACM4.txt", - "path": "MACM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MBRM4.txt", - "path": "MBRM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MCGM4.txt", - "path": "MCGM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MEEM4.txt", - "path": "MEEM4.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MHRN6.txt", - "path": "MHRN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MNMM4.txt", - "path": "MNMM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MNPV2.txt", - "path": "MNPV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MRCP1.txt", - "path": "MRCP1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MRHO1.txt", - "path": "MRHO1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MROS1.txt", - "path": "MROS1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MTKN6.txt", - "path": "MTKN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "MZXC1.txt", - "path": "MZXC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NBGM3.txt", - "path": "NBGM3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NBLP1.txt", - "path": "NBLP1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NCDV2.txt", - "path": "NCDV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NEAW1.txt", - "path": "NEAW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NIAN6.txt", - "path": "NIAN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NJLC1.txt", - "path": "NJLC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NKTA2.txt", - "path": "NKTA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NLHC3.txt", - "path": "NLHC3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NMTA2.txt", - "path": "NMTA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NPDW3.txt", - "path": "NPDW3.txt", - "size": 157696, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NSTP6.txt", - "path": "NSTP6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NTKM3.txt", - "path": "NTKM3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NWHC3.txt", - "path": "NWHC3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NWPR1.txt", - "path": "NWPR1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "NWWH1.txt", - "path": "NWWH1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OBGN6.txt", - "path": "OBGN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OCIM2.txt", - "path": "OCIM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OKXC1.txt", - "path": "OKXC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OLSA2.txt", - "path": "OLSA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OMHC1.txt", - "path": "OMHC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OOUH1.txt", - "path": "OOUH1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ORIN7.txt", - "path": "ORIN7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OSGN6.txt", - "path": "OSGN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718974200000, - "name": "OSTF1.supl", - "path": "OSTF1.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OSTF1.txt", - "path": "OSTF1.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "OVIA2.txt", - "path": "OVIA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PBWM4.txt", - "path": "PBWM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PCOC1.txt", - "path": "PCOC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PDVR1.txt", - "path": "PDVR1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PFDC1.txt", - "path": "PFDC1.txt", - "size": 667648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PFXC1.txt", - "path": "PFXC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PGBP7.txt", - "path": "PGBP7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PHBP1.txt", - "path": "PHBP1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PLXA2.txt", - "path": "PLXA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PNLM4.txt", - "path": "PNLM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PORO3.txt", - "path": "PORO3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PPTM2.txt", - "path": "PPTM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PPXC1.txt", - "path": "PPXC1.txt", - "size": 930816, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PRDA2.txt", - "path": "PRDA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PRHH1.txt", - "path": "PRHH1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PRYC1.txt", - "path": "PRYC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PSBC1.txt", - "path": "PSBC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PSBM1.txt", - "path": "PSBM1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PSLC1.txt", - "path": "PSLC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PSTN6.txt", - "path": "PSTN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PTCR1.txt", - "path": "PTCR1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PTIM4.txt", - "path": "PTIM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PTWW1.txt", - "path": "PTWW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PVDR1.txt", - "path": "PVDR1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PXAC1.txt", - "path": "PXAC1.txt", - "size": 695296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PXOC1.txt", - "path": "PXOC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "PXSC1.txt", - "path": "PXSC1.txt", - "size": 975872, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "QPTR1.txt", - "path": "QPTR1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "RCKM4.txt", - "path": "RCKM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "RCMC1.txt", - "path": "RCMC1.txt", - "size": 883712, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "RCRN6.txt", - "path": "RCRN6.txt", - "size": 885760, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "RDDA2.txt", - "path": "RDDA2.txt", - "size": 992256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "RDYD1.txt", - "path": "RDYD1.txt", - "size": 873472, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ROBN4.txt", - "path": "ROBN4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "RPLV2.txt", - "path": "RPLV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "RTYC1.txt", - "path": "RTYC1.txt", - "size": 985088, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SDBC1.txt", - "path": "SDBC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SDHN4.txt", - "path": "SDHN4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SEIM1.txt", - "path": "SEIM1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SJSN4.txt", - "path": "SJSN4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SKTA2.txt", - "path": "SKTA2.txt", - "size": 962560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SLIM2.txt", - "path": "SLIM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SNDA2.txt", - "path": "SNDA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SNDP5.txt", - "path": "SNDP5.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SWLA2.txt", - "path": "SWLA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SWPM4.txt", - "path": "SWPM4.txt", - "size": 982016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "SWPV2.txt", - "path": "SWPV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "TAWM4.txt", - "path": "TAWM4.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "TCBM2.txt", - "path": "TCBM2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "TCMW1.txt", - "path": "TCMW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "TCNW1.txt", - "path": "TCNW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "THRO1.txt", - "path": "THRO1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "TKPN6.txt", - "path": "TKPN6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "TLBO3.txt", - "path": "TLBO3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "TOKW1.txt", - "path": "TOKW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "ULRA2.txt", - "path": "ULRA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "UNLA2.txt", - "path": "UNLA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "UPBC1.txt", - "path": "UPBC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "VCVA2.txt", - "path": "VCVA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "VDZA2.txt", - "path": "VDZA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "WAHV2.txt", - "path": "WAHV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "WAKP8.txt", - "path": "WAKP8.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "WASD2.txt", - "path": "WASD2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "WDSV2.txt", - "path": "WDSV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "WFPM4.txt", - "path": "WFPM4.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "WLON7.txt", - "path": "WLON7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "WNEM4.txt", - "path": "WNEM4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "YATA2.txt", - "path": "YATA2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718974200000, - "name": "YKTV2.txt", - "path": "YKTV2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45001.supl", - "path": "45001.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45001.txt", - "path": "45001.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45002.supl", - "path": "45002.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45002.txt", - "path": "45002.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45003.supl", - "path": "45003.supl", - "size": 312320, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45003.txt", - "path": "45003.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45005.supl", - "path": "45005.supl", - "size": 311296, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45005.txt", - "path": "45005.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45006.supl", - "path": "45006.supl", - "size": 312320, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45006.txt", - "path": "45006.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45007.supl", - "path": "45007.supl", - "size": 245760, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45007.txt", - "path": "45007.txt", - "size": 482304, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45008.supl", - "path": "45008.supl", - "size": 312320, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45008.txt", - "path": "45008.txt", - "size": 611328, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "45012.supl", - "path": "45012.supl", - "size": 214016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "45012.txt", - "path": "45012.txt", - "size": 418816, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973900000, - "name": "45023.ocean", - "path": "45023.ocean", - "size": 184320, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973900000, - "name": "45023.spec", - "path": "45023.spec", - "size": 191488, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718973900000, - "name": "45023.srad", - "path": "45023.srad", - "size": 87040, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973900000, - "name": "45025.ocean", - "path": "45025.ocean", - "size": 180224, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973900000, - "name": "45025.spec", - "path": "45025.spec", - "size": 187392, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718973900000, - "name": "45025.srad", - "path": "45025.srad", - "size": 83968, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973900000, - "name": "45175.spec", - "path": "45175.spec", - "size": 192512, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718973900000, - "name": "45175.srad", - "path": "45175.srad", - "size": 88064, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973900000, - "name": "45216.ocean", - "path": "45216.ocean", - "size": 113664, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973900000, - "name": "45216.spec", - "path": "45216.spec", - "size": 98304, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718973900000, - "name": "45216.srad", - "path": "45216.srad", - "size": 53248, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46001.supl", - "path": "46001.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46001.txt", - "path": "46001.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46035.supl", - "path": "46035.supl", - "size": 128000, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46035.txt", - "path": "46035.txt", - "size": 250880, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46061.supl", - "path": "46061.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46061.txt", - "path": "46061.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46066.supl", - "path": "46066.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46066.txt", - "path": "46066.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46070.supl", - "path": "46070.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46070.txt", - "path": "46070.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46071.supl", - "path": "46071.supl", - "size": 108544, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46071.txt", - "path": "46071.txt", - "size": 211968, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46072.supl", - "path": "46072.supl", - "size": 306176, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46072.txt", - "path": "46072.txt", - "size": 599040, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46073.supl", - "path": "46073.supl", - "size": 150528, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46073.txt", - "path": "46073.txt", - "size": 295936, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46075.supl", - "path": "46075.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46075.txt", - "path": "46075.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46076.supl", - "path": "46076.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46076.txt", - "path": "46076.txt", - "size": 605184, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46080.supl", - "path": "46080.supl", - "size": 303104, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46080.txt", - "path": "46080.txt", - "size": 593920, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46082.supl", - "path": "46082.supl", - "size": 309248, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46082.txt", - "path": "46082.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973900000, - "name": "46084.supl", - "path": "46084.supl", - "size": 310272, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "46084.txt", - "path": "46084.txt", - "size": 607232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "AMRL1.txt", - "path": "AMRL1.txt", - "size": 982016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "ANPT2.txt", - "path": "ANPT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "APCF1.txt", - "path": "APCF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "AWRT2.txt", - "path": "AWRT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "BABT2.txt", - "path": "BABT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "BKBF1.txt", - "path": "BKBF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "BKTL1.txt", - "path": "BKTL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "BLIF1.txt", - "path": "BLIF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "BSCA1.txt", - "path": "BSCA1.txt", - "size": 139264, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "BYGL1.txt", - "path": "BYGL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "BZST2.txt", - "path": "BZST2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CAPL1.txt", - "path": "CAPL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CARL1.txt", - "path": "CARL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CHAV3.txt", - "path": "CHAV3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CHSV3.txt", - "path": "CHSV3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CKYF1.txt", - "path": "CKYF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CLBP4.txt", - "path": "CLBP4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CRTA1.txt", - "path": "CRTA1.txt", - "size": 103424, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CWBF1.txt", - "path": "CWBF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "CWCI.txt", - "path": "CWCI.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "DILA1.txt", - "path": "DILA1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "DMSF1.txt", - "path": "DMSF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "DPHA1.txt", - "path": "DPHA1.txt", - "size": 146432, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "EBEF1.txt", - "path": "EBEF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "EFLA1.txt", - "path": "EFLA1.txt", - "size": 856064, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "EINL1.txt", - "path": "EINL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "EMAT2.txt", - "path": "EMAT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "EPTT2.txt", - "path": "EPTT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "ESPP4.txt", - "path": "ESPP4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "FMRF1.txt", - "path": "FMRF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "FPST2.txt", - "path": "FPST2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "FRDF1.txt", - "path": "FRDF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "FRMA1.txt", - "path": "FRMA1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "FRWL1.txt", - "path": "FRWL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "GISL1.txt", - "path": "GISL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "GNJT2.txt", - "path": "GNJT2.txt", - "size": 979968, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "GRRT2.txt", - "path": "GRRT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "GTOT2.txt", - "path": "GTOT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "HIST2.txt", - "path": "HIST2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "HIVT2.txt", - "path": "HIVT2.txt", - "size": 994304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "IRDT2.txt", - "path": "IRDT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "JXUF1.txt", - "path": "JXUF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KATP.txt", - "path": "KATP.txt", - "size": 304128, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KGBK.txt", - "path": "KGBK.txt", - "size": 279552, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KGHB.txt", - "path": "KGHB.txt", - "size": 303104, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KGRY.txt", - "path": "KGRY.txt", - "size": 303104, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KGUL.txt", - "path": "KGUL.txt", - "size": 304128, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KHHV.txt", - "path": "KHHV.txt", - "size": 304128, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KIKT.txt", - "path": "KIKT.txt", - "size": 305152, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KVAF.txt", - "path": "KVAF.txt", - "size": 304128, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "KYWF1.txt", - "path": "KYWF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "LAMV3.txt", - "path": "LAMV3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "LCLL1.txt", - "path": "LCLL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "LKWF1.txt", - "path": "LKWF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "LQAT2.txt", - "path": "LQAT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "LTBV3.txt", - "path": "LTBV3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "LTJF1.txt", - "path": "LTJF1.txt", - "size": 882688, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "LUIT2.txt", - "path": "LUIT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MBET2.txt", - "path": "MBET2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MBPA1.txt", - "path": "MBPA1.txt", - "size": 879616, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MCGA1.txt", - "path": "MCGA1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MGIP4.txt", - "path": "MGIP4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MGPT2.txt", - "path": "MGPT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MGZP4.txt", - "path": "MGZP4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MHBT2.txt", - "path": "MHBT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MISP4.txt", - "path": "MISP4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MTBF1.txt", - "path": "MTBF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "MYPF1.txt", - "path": "MYPF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "NCHT2.txt", - "path": "NCHT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "NFDF1.txt", - "path": "NFDF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "NUET2.txt", - "path": "NUET2.txt", - "size": 968704, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "NWCL1.txt", - "path": "NWCL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "OBLA1.txt", - "path": "OBLA1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "OPTF1.txt", - "path": "OPTF1.txt", - "size": 991232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PACF1.txt", - "path": "PACF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PACT2.txt", - "path": "PACT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PCBF1.txt", - "path": "PCBF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PCGT2.txt", - "path": "PCGT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PCLF1.txt", - "path": "PCLF1.txt", - "size": 992256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PCNT2.txt", - "path": "PCNT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PEGF1.txt", - "path": "PEGF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PILL1.txt", - "path": "PILL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PMAF1.txt", - "path": "PMAF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PMNT2.txt", - "path": "PMNT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PNLM6.txt", - "path": "PNLM6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PORT2.txt", - "path": "PORT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PSTL1.txt", - "path": "PSTL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PTBM6.txt", - "path": "PTBM6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PTIT2.txt", - "path": "PTIT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "PTOA1.txt", - "path": "PTOA1.txt", - "size": 879616, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "RCPT2.txt", - "path": "RCPT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "RLIT2.txt", - "path": "RLIT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "RLOT2.txt", - "path": "RLOT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "RSJT2.txt", - "path": "RSJT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "RTAT2.txt", - "path": "RTAT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "SAPF1.txt", - "path": "SAPF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "SDRT2.txt", - "path": "SDRT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "SHBL1.txt", - "path": "SHBL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "SJNP4.txt", - "path": "SJNP4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "SKCF1.txt", - "path": "SKCF1.txt", - "size": 721920, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TAQT2.txt", - "path": "TAQT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TESL1.txt", - "path": "TESL1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TLVT2.txt", - "path": "TLVT2.txt", - "size": 993280, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TPAF1.txt", - "path": "TPAF1.txt", - "size": 395264, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TRDF1.txt", - "path": "TRDF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TSHF1.txt", - "path": "TSHF1.txt", - "size": 724992, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TXPT2.txt", - "path": "TXPT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "TXVT2.txt", - "path": "TXVT2.txt", - "size": 992256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "UTVT2.txt", - "path": "UTVT2.txt", - "size": 995328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "VAKF1.txt", - "path": "VAKF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "VCAF1.txt", - "path": "VCAF1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "VCAT2.txt", - "path": "VCAT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "VTBT2.txt", - "path": "VTBT2.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973900000, - "name": "WYCM6.txt", - "path": "WYCM6.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41001.data_spec", - "path": "41001.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41001.swdir", - "path": "41001.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41001.swdir2", - "path": "41001.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41001.swr1", - "path": "41001.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41001.swr2", - "path": "41001.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41002.data_spec", - "path": "41002.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41002.spec", - "path": "41002.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41002.swdir", - "path": "41002.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41002.swdir2", - "path": "41002.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41002.swr1", - "path": "41002.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41002.swr2", - "path": "41002.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41004.data_spec", - "path": "41004.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41004.spec", - "path": "41004.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41004.swdir", - "path": "41004.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41004.swdir2", - "path": "41004.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41004.swr1", - "path": "41004.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41004.swr2", - "path": "41004.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41008.data_spec", - "path": "41008.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41008.swdir", - "path": "41008.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41008.swdir2", - "path": "41008.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41008.swr1", - "path": "41008.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41008.swr2", - "path": "41008.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41009.data_spec", - "path": "41009.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41009.spec", - "path": "41009.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41009.swdir", - "path": "41009.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41009.swdir2", - "path": "41009.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41009.swr1", - "path": "41009.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41009.swr2", - "path": "41009.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41010.data_spec", - "path": "41010.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41010.spec", - "path": "41010.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41010.swdir", - "path": "41010.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41010.swdir2", - "path": "41010.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41010.swr1", - "path": "41010.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41010.swr2", - "path": "41010.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41013.data_spec", - "path": "41013.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41013.spec", - "path": "41013.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41013.swdir", - "path": "41013.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41013.swdir2", - "path": "41013.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41013.swr1", - "path": "41013.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41013.swr2", - "path": "41013.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41024.txt", - "path": "41024.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41025.data_spec", - "path": "41025.data_spec", - "size": 869376, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41025.spec", - "path": "41025.spec", - "size": 91136, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41025.swdir", - "path": "41025.swdir", - "size": 845824, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41025.swdir2", - "path": "41025.swdir2", - "size": 844800, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41025.swr1", - "path": "41025.swr1", - "size": 825344, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41025.swr2", - "path": "41025.swr2", - "size": 825344, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41029.txt", - "path": "41029.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41033.txt", - "path": "41033.txt", - "size": 78848, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41037.txt", - "path": "41037.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41038.txt", - "path": "41038.txt", - "size": 100352, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41040.data_spec", - "path": "41040.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41040.spec", - "path": "41040.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41040.swdir", - "path": "41040.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41040.swdir2", - "path": "41040.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41040.swr1", - "path": "41040.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41040.swr2", - "path": "41040.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41043.data_spec", - "path": "41043.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41043.spec", - "path": "41043.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41043.swdir", - "path": "41043.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41043.swdir2", - "path": "41043.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41043.swr1", - "path": "41043.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41043.swr2", - "path": "41043.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41044.data_spec", - "path": "41044.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41044.spec", - "path": "41044.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41044.swdir", - "path": "41044.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41044.swdir2", - "path": "41044.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41044.swr1", - "path": "41044.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41044.swr2", - "path": "41044.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41046.data_spec", - "path": "41046.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41046.spec", - "path": "41046.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41046.swdir", - "path": "41046.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41046.swdir2", - "path": "41046.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41046.swr1", - "path": "41046.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41046.swr2", - "path": "41046.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41047.data_spec", - "path": "41047.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41047.spec", - "path": "41047.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41047.swdir", - "path": "41047.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41047.swdir2", - "path": "41047.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41047.swr1", - "path": "41047.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41047.swr2", - "path": "41047.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41049.data_spec", - "path": "41049.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41049.spec", - "path": "41049.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41049.swdir", - "path": "41049.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41049.swdir2", - "path": "41049.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41049.swr1", - "path": "41049.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41049.swr2", - "path": "41049.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41064.txt", - "path": "41064.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41069.txt", - "path": "41069.txt", - "size": 34816, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "41110.txt", - "path": "41110.txt", - "size": 200704, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41113.data_spec", - "path": "41113.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41113.spec", - "path": "41113.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41113.swdir", - "path": "41113.swdir", - "size": 964608, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41113.swdir2", - "path": "41113.swdir2", - "size": 965632, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41113.swr1", - "path": "41113.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41113.swr2", - "path": "41113.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41114.data_spec", - "path": "41114.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41114.spec", - "path": "41114.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41114.swdir", - "path": "41114.swdir", - "size": 952320, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41114.swdir2", - "path": "41114.swdir2", - "size": 957440, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41114.swr1", - "path": "41114.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41114.swr2", - "path": "41114.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41122.data_spec", - "path": "41122.data_spec", - "size": 468992, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41122.spec", - "path": "41122.spec", - "size": 70656, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41122.swdir", - "path": "41122.swdir", - "size": 413696, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41122.swdir2", - "path": "41122.swdir2", - "size": 416768, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41122.swr1", - "path": "41122.swr1", - "size": 398336, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41122.swr2", - "path": "41122.swr2", - "size": 398336, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "41159.data_spec", - "path": "41159.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "41159.spec", - "path": "41159.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "41159.swdir", - "path": "41159.swdir", - "size": 972800, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "41159.swdir2", - "path": "41159.swdir2", - "size": 969728, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "41159.swr1", - "path": "41159.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "41159.swr2", - "path": "41159.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42001.data_spec", - "path": "42001.data_spec", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42001.swdir", - "path": "42001.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42001.swdir2", - "path": "42001.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42001.swr1", - "path": "42001.swr1", - "size": 1258291, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42001.swr2", - "path": "42001.swr2", - "size": 1258291, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42002.data_spec", - "path": "42002.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42002.spec", - "path": "42002.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42002.swdir", - "path": "42002.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42002.swdir2", - "path": "42002.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42002.swr1", - "path": "42002.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42002.swr2", - "path": "42002.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42012.data_spec", - "path": "42012.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42012.spec", - "path": "42012.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42012.swdir", - "path": "42012.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42012.swdir2", - "path": "42012.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42012.swr1", - "path": "42012.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42012.swr2", - "path": "42012.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42019.data_spec", - "path": "42019.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42019.spec", - "path": "42019.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42019.swdir", - "path": "42019.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42019.swdir2", - "path": "42019.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42019.swr1", - "path": "42019.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42019.swr2", - "path": "42019.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42035.data_spec", - "path": "42035.data_spec", - "size": 1258291, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42035.spec", - "path": "42035.spec", - "size": 135168, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42035.swdir", - "path": "42035.swdir", - "size": 1258291, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42035.swdir2", - "path": "42035.swdir2", - "size": 1258291, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42035.swr1", - "path": "42035.swr1", - "size": 1258291, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42035.swr2", - "path": "42035.swr2", - "size": 1258291, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42040.data_spec", - "path": "42040.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42040.spec", - "path": "42040.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42040.swdir", - "path": "42040.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42040.swdir2", - "path": "42040.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42040.swr1", - "path": "42040.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42040.swr2", - "path": "42040.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42055.data_spec", - "path": "42055.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42055.spec", - "path": "42055.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42055.swdir", - "path": "42055.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42055.swdir2", - "path": "42055.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42055.swr1", - "path": "42055.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42055.swr2", - "path": "42055.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42056.data_spec", - "path": "42056.data_spec", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42056.spec", - "path": "42056.spec", - "size": 147456, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42056.swdir", - "path": "42056.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42056.swdir2", - "path": "42056.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42056.swr1", - "path": "42056.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42056.swr2", - "path": "42056.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42057.data_spec", - "path": "42057.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42057.spec", - "path": "42057.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42057.swdir", - "path": "42057.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42057.swdir2", - "path": "42057.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42057.swr1", - "path": "42057.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42057.swr2", - "path": "42057.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42058.data_spec", - "path": "42058.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42058.spec", - "path": "42058.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42058.swdir", - "path": "42058.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42058.swdir2", - "path": "42058.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42058.swr1", - "path": "42058.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42058.swr2", - "path": "42058.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42059.data_spec", - "path": "42059.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42059.spec", - "path": "42059.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42059.swdir", - "path": "42059.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42059.swdir2", - "path": "42059.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42059.swr1", - "path": "42059.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42059.swr2", - "path": "42059.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42060.data_spec", - "path": "42060.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42060.spec", - "path": "42060.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42060.swdir", - "path": "42060.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42060.swdir2", - "path": "42060.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42060.swr1", - "path": "42060.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42060.swr2", - "path": "42060.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42091.data_spec", - "path": "42091.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42091.spec", - "path": "42091.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42091.swdir", - "path": "42091.swdir", - "size": 982016, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42091.swdir2", - "path": "42091.swdir2", - "size": 976896, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42091.swr1", - "path": "42091.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42091.swr2", - "path": "42091.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "42097.data_spec", - "path": "42097.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "42097.spec", - "path": "42097.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "42097.swdir", - "path": "42097.swdir", - "size": 949248, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "42097.swdir2", - "path": "42097.swdir2", - "size": 947200, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "42097.swr1", - "path": "42097.swr1", - "size": 892928, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "42097.swr2", - "path": "42097.swr2", - "size": 892928, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44007.data_spec", - "path": "44007.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44007.spec", - "path": "44007.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44007.swdir", - "path": "44007.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44007.swdir2", - "path": "44007.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44007.swr1", - "path": "44007.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44007.swr2", - "path": "44007.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44008.data_spec", - "path": "44008.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44008.spec", - "path": "44008.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44008.swdir", - "path": "44008.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44008.swdir2", - "path": "44008.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44008.swr1", - "path": "44008.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44008.swr2", - "path": "44008.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44009.data_spec", - "path": "44009.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44009.spec", - "path": "44009.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44009.swdir", - "path": "44009.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44009.swdir2", - "path": "44009.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44009.swr1", - "path": "44009.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44009.swr2", - "path": "44009.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44011.data_spec", - "path": "44011.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44011.spec", - "path": "44011.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44011.swdir", - "path": "44011.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44011.swdir2", - "path": "44011.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44011.swr1", - "path": "44011.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44011.swr2", - "path": "44011.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44013.data_spec", - "path": "44013.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44013.spec", - "path": "44013.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44014.data_spec", - "path": "44014.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44014.spec", - "path": "44014.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44014.swdir", - "path": "44014.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44014.swdir2", - "path": "44014.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44014.swr1", - "path": "44014.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44014.swr2", - "path": "44014.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44018.data_spec", - "path": "44018.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44018.spec", - "path": "44018.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44018.swdir", - "path": "44018.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44018.swdir2", - "path": "44018.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44018.swr1", - "path": "44018.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44018.swr2", - "path": "44018.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44020.data_spec", - "path": "44020.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44020.spec", - "path": "44020.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44020.swdir", - "path": "44020.swdir", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44020.swdir2", - "path": "44020.swdir2", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44020.swr1", - "path": "44020.swr1", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44020.swr2", - "path": "44020.swr2", - "size": 1048576, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44025.data_spec", - "path": "44025.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44025.spec", - "path": "44025.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44025.swdir", - "path": "44025.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44025.swdir2", - "path": "44025.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44025.swr1", - "path": "44025.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44025.swr2", - "path": "44025.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44027.spec", - "path": "44027.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "44056.txt", - "path": "44056.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44065.data_spec", - "path": "44065.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44065.spec", - "path": "44065.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44065.swdir", - "path": "44065.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44065.swdir2", - "path": "44065.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44065.swr1", - "path": "44065.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44065.swr2", - "path": "44065.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44086.data_spec", - "path": "44086.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44086.spec", - "path": "44086.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44086.swdir", - "path": "44086.swdir", - "size": 961536, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44086.swdir2", - "path": "44086.swdir2", - "size": 963584, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44086.swr1", - "path": "44086.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44086.swr2", - "path": "44086.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "44087.txt", - "path": "44087.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "44089.txt", - "path": "44089.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44091.data_spec", - "path": "44091.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44091.spec", - "path": "44091.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44091.swdir", - "path": "44091.swdir", - "size": 973824, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44091.swdir2", - "path": "44091.swdir2", - "size": 972800, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44091.swr1", - "path": "44091.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44091.swr2", - "path": "44091.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "44095.txt", - "path": "44095.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44098.data_spec", - "path": "44098.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44098.spec", - "path": "44098.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44098.swdir", - "path": "44098.swdir", - "size": 975872, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44098.swdir2", - "path": "44098.swdir2", - "size": 974848, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44098.swr1", - "path": "44098.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44098.swr2", - "path": "44098.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "44099.data_spec", - "path": "44099.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "44099.spec", - "path": "44099.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "44099.swdir", - "path": "44099.swdir", - "size": 970752, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "44099.swdir2", - "path": "44099.swdir2", - "size": 968704, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "44099.swr1", - "path": "44099.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "44099.swr2", - "path": "44099.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45001.data_spec", - "path": "45001.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45001.spec", - "path": "45001.spec", - "size": 148480, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45003.data_spec", - "path": "45003.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45003.spec", - "path": "45003.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45004.data_spec", - "path": "45004.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45005.data_spec", - "path": "45005.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45005.spec", - "path": "45005.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "45005.swdir", - "path": "45005.swdir", - "size": 833536, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "45005.swdir2", - "path": "45005.swdir2", - "size": 832512, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "45005.swr1", - "path": "45005.swr1", - "size": 832512, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "45005.swr2", - "path": "45005.swr2", - "size": 832512, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45006.spec", - "path": "45006.spec", - "size": 15360, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45008.data_spec", - "path": "45008.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45008.spec", - "path": "45008.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45012.data_spec", - "path": "45012.data_spec", - "size": 992256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "45013.txt", - "path": "45013.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718973600000, - "name": "45199.adcp", - "path": "45199.adcp", - "size": 780288, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973600000, - "name": "45199.ocean", - "path": "45199.ocean", - "size": 176128, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45199.spec", - "path": "45199.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "45199.txt", - "path": "45199.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45210.data_spec", - "path": "45210.data_spec", - "size": 765952, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45210.spec", - "path": "45210.spec", - "size": 114688, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "45210.swdir", - "path": "45210.swdir", - "size": 570368, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "45210.swdir2", - "path": "45210.swdir2", - "size": 570368, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "45210.swr1", - "path": "45210.swr1", - "size": 538624, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "45210.swr2", - "path": "45210.swr2", - "size": 538624, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "45210.txt", - "path": "45210.txt", - "size": 160768, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "45211.txt", - "path": "45211.txt", - "size": 41984, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "45215.data_spec", - "path": "45215.data_spec", - "size": 829440, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "45215.spec", - "path": "45215.spec", - "size": 115712, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "45215.txt", - "path": "45215.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46001.spec", - "path": "46001.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46005.data_spec", - "path": "46005.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46005.swdir", - "path": "46005.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46005.swdir2", - "path": "46005.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46005.swr1", - "path": "46005.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46005.swr2", - "path": "46005.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46006.data_spec", - "path": "46006.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46006.spec", - "path": "46006.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46006.swdir", - "path": "46006.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46006.swdir2", - "path": "46006.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46006.swr1", - "path": "46006.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46006.swr2", - "path": "46006.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46011.spec", - "path": "46011.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46013.spec", - "path": "46013.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46014.data_spec", - "path": "46014.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46014.spec", - "path": "46014.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46014.swdir", - "path": "46014.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46014.swdir2", - "path": "46014.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46014.swr1", - "path": "46014.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46014.swr2", - "path": "46014.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46022.spec", - "path": "46022.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46025.spec", - "path": "46025.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46026.data_spec", - "path": "46026.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46026.spec", - "path": "46026.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46026.swdir", - "path": "46026.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46026.swdir2", - "path": "46026.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46026.swr1", - "path": "46026.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46026.swr2", - "path": "46026.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46026.txt", - "path": "46026.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46027.spec", - "path": "46027.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46028.data_spec", - "path": "46028.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46028.swdir", - "path": "46028.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46028.swdir2", - "path": "46028.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46028.swr1", - "path": "46028.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46028.swr2", - "path": "46028.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46029.spec", - "path": "46029.spec", - "size": 13312, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46035.data_spec", - "path": "46035.data_spec", - "size": 601088, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46035.spec", - "path": "46035.spec", - "size": 63488, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46035.swdir", - "path": "46035.swdir", - "size": 579584, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46035.swdir2", - "path": "46035.swdir2", - "size": 579584, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46035.swr1", - "path": "46035.swr1", - "size": 567296, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46035.swr2", - "path": "46035.swr2", - "size": 567296, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46041.data_spec", - "path": "46041.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46041.spec", - "path": "46041.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46041.swdir", - "path": "46041.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46041.swdir2", - "path": "46041.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46041.swr1", - "path": "46041.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46041.swr2", - "path": "46041.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46047.data_spec", - "path": "46047.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46047.spec", - "path": "46047.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46047.swdir", - "path": "46047.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46047.swdir2", - "path": "46047.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46047.swr1", - "path": "46047.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46047.swr2", - "path": "46047.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46050.data_spec", - "path": "46050.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46050.spec", - "path": "46050.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46050.swdir", - "path": "46050.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46050.swdir2", - "path": "46050.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46050.swr1", - "path": "46050.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46050.swr2", - "path": "46050.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46053.data_spec", - "path": "46053.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46053.spec", - "path": "46053.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46053.swdir", - "path": "46053.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46053.swdir2", - "path": "46053.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46053.swr1", - "path": "46053.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46053.swr2", - "path": "46053.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46054.data_spec", - "path": "46054.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46054.spec", - "path": "46054.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46054.swdir", - "path": "46054.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46054.swdir2", - "path": "46054.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46054.swr1", - "path": "46054.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46054.swr2", - "path": "46054.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46061.data_spec", - "path": "46061.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46061.spec", - "path": "46061.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46061.swdir", - "path": "46061.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46061.swdir2", - "path": "46061.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46061.swr1", - "path": "46061.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46061.swr2", - "path": "46061.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46066.spec", - "path": "46066.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46069.spec", - "path": "46069.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46070.data_spec", - "path": "46070.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46070.spec", - "path": "46070.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46070.swdir", - "path": "46070.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46070.swdir2", - "path": "46070.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46070.swr1", - "path": "46070.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46070.swr2", - "path": "46070.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46071.data_spec", - "path": "46071.data_spec", - "size": 506880, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46071.spec", - "path": "46071.spec", - "size": 53248, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46071.swdir", - "path": "46071.swdir", - "size": 487424, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46071.swdir2", - "path": "46071.swdir2", - "size": 486400, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46071.swr1", - "path": "46071.swr1", - "size": 480256, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46071.swr2", - "path": "46071.swr2", - "size": 480256, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46072.data_spec", - "path": "46072.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46072.spec", - "path": "46072.spec", - "size": 149504, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46072.swdir", - "path": "46072.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46072.swdir2", - "path": "46072.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46072.swr1", - "path": "46072.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46072.swr2", - "path": "46072.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46073.data_spec", - "path": "46073.data_spec", - "size": 706560, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46073.spec", - "path": "46073.spec", - "size": 73728, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46073.swdir", - "path": "46073.swdir", - "size": 687104, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46073.swdir2", - "path": "46073.swdir2", - "size": 686080, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46073.swr1", - "path": "46073.swr1", - "size": 668672, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46073.swr2", - "path": "46073.swr2", - "size": 668672, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46075.spec", - "path": "46075.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46076.data_spec", - "path": "46076.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46076.spec", - "path": "46076.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46076.swdir", - "path": "46076.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46076.swdir2", - "path": "46076.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46076.swr1", - "path": "46076.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46076.swr2", - "path": "46076.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46078.spec", - "path": "46078.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46080.spec", - "path": "46080.spec", - "size": 148480, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46082.data_spec", - "path": "46082.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46082.spec", - "path": "46082.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46082.swdir", - "path": "46082.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46082.swdir2", - "path": "46082.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46082.swr1", - "path": "46082.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46082.swr2", - "path": "46082.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46086.data_spec", - "path": "46086.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46086.spec", - "path": "46086.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46086.swdir", - "path": "46086.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46086.swdir2", - "path": "46086.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46086.swr1", - "path": "46086.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46086.swr2", - "path": "46086.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46088.data_spec", - "path": "46088.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46088.spec", - "path": "46088.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46088.swdir", - "path": "46088.swdir", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46088.swdir2", - "path": "46088.swdir2", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46088.swr1", - "path": "46088.swr1", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46088.swr2", - "path": "46088.swr2", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46092.txt", - "path": "46092.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46211.data_spec", - "path": "46211.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46211.spec", - "path": "46211.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46211.swdir", - "path": "46211.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46211.swdir2", - "path": "46211.swdir2", - "size": 987136, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46211.swr1", - "path": "46211.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46211.swr2", - "path": "46211.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46211.txt", - "path": "46211.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46213.data_spec", - "path": "46213.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46213.spec", - "path": "46213.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46213.swdir", - "path": "46213.swdir", - "size": 969728, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46213.swdir2", - "path": "46213.swdir2", - "size": 965632, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46213.swr1", - "path": "46213.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46213.swr2", - "path": "46213.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46213.txt", - "path": "46213.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46214.data_spec", - "path": "46214.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46214.spec", - "path": "46214.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46214.swdir", - "path": "46214.swdir", - "size": 990208, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46214.swdir2", - "path": "46214.swdir2", - "size": 979968, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46214.swr1", - "path": "46214.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46214.swr2", - "path": "46214.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46218.data_spec", - "path": "46218.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46218.spec", - "path": "46218.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46218.swdir", - "path": "46218.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46218.swdir2", - "path": "46218.swdir2", - "size": 983040, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46218.swr1", - "path": "46218.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46218.swr2", - "path": "46218.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46219.data_spec", - "path": "46219.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46219.spec", - "path": "46219.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46219.swdir", - "path": "46219.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46219.swdir2", - "path": "46219.swdir2", - "size": 987136, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46219.swr1", - "path": "46219.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46219.swr2", - "path": "46219.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46221.data_spec", - "path": "46221.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46221.spec", - "path": "46221.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46221.swdir", - "path": "46221.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46221.swdir2", - "path": "46221.swdir2", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46221.swr1", - "path": "46221.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46221.swr2", - "path": "46221.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46221.txt", - "path": "46221.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46222.data_spec", - "path": "46222.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46222.spec", - "path": "46222.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46222.swdir", - "path": "46222.swdir", - "size": 990208, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46222.swdir2", - "path": "46222.swdir2", - "size": 989184, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46222.swr1", - "path": "46222.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46222.swr2", - "path": "46222.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46222.txt", - "path": "46222.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46224.data_spec", - "path": "46224.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46224.spec", - "path": "46224.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46224.swdir", - "path": "46224.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46224.swdir2", - "path": "46224.swdir2", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46224.swr1", - "path": "46224.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46224.swr2", - "path": "46224.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46224.txt", - "path": "46224.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46225.data_spec", - "path": "46225.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46225.spec", - "path": "46225.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46225.swdir", - "path": "46225.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46225.swdir2", - "path": "46225.swdir2", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46225.swr1", - "path": "46225.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46225.swr2", - "path": "46225.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46225.txt", - "path": "46225.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46229.data_spec", - "path": "46229.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46229.spec", - "path": "46229.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46229.swdir", - "path": "46229.swdir", - "size": 972800, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46229.swdir2", - "path": "46229.swdir2", - "size": 970752, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46229.swr1", - "path": "46229.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46229.swr2", - "path": "46229.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46229.txt", - "path": "46229.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46232.data_spec", - "path": "46232.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46232.spec", - "path": "46232.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46232.swdir", - "path": "46232.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46232.swdir2", - "path": "46232.swdir2", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46232.swr1", - "path": "46232.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46232.swr2", - "path": "46232.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46232.txt", - "path": "46232.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46235.data_spec", - "path": "46235.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46235.spec", - "path": "46235.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46235.swdir", - "path": "46235.swdir", - "size": 989184, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46235.swdir2", - "path": "46235.swdir2", - "size": 989184, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46235.swr1", - "path": "46235.swr1", - "size": 920576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46235.swr2", - "path": "46235.swr2", - "size": 920576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46235.txt", - "path": "46235.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46248.txt", - "path": "46248.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46253.txt", - "path": "46253.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46254.data_spec", - "path": "46254.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46254.spec", - "path": "46254.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46254.swdir", - "path": "46254.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46254.swdir2", - "path": "46254.swdir2", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46254.swr1", - "path": "46254.swr1", - "size": 924672, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46254.swr2", - "path": "46254.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46256.txt", - "path": "46256.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46258.data_spec", - "path": "46258.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46258.spec", - "path": "46258.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46258.swdir", - "path": "46258.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46258.swdir2", - "path": "46258.swdir2", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46258.swr1", - "path": "46258.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46258.swr2", - "path": "46258.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46258.txt", - "path": "46258.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46259.txt", - "path": "46259.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46273.data_spec", - "path": "46273.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46273.spec", - "path": "46273.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46273.swdir", - "path": "46273.swdir", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46273.swdir2", - "path": "46273.swdir2", - "size": 992256, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46273.swr1", - "path": "46273.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46273.swr2", - "path": "46273.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46273.txt", - "path": "46273.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "46274.data_spec", - "path": "46274.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "46274.spec", - "path": "46274.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "46274.swdir", - "path": "46274.swdir", - "size": 990208, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "46274.swdir2", - "path": "46274.swdir2", - "size": 990208, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "46274.swr1", - "path": "46274.swr1", - "size": 921600, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "46274.swr2", - "path": "46274.swr2", - "size": 921600, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46274.txt", - "path": "46274.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46280.txt", - "path": "46280.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "46281.txt", - "path": "46281.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51000.data_spec", - "path": "51000.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51000.spec", - "path": "51000.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51000.swdir", - "path": "51000.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51000.swdir2", - "path": "51000.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51000.swr1", - "path": "51000.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51000.swr2", - "path": "51000.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51001.data_spec", - "path": "51001.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51001.spec", - "path": "51001.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51001.swdir", - "path": "51001.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51001.swdir2", - "path": "51001.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51001.swr1", - "path": "51001.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51001.swr2", - "path": "51001.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51003.data_spec", - "path": "51003.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51003.spec", - "path": "51003.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51003.swdir", - "path": "51003.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51003.swdir2", - "path": "51003.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51003.swr1", - "path": "51003.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51003.swr2", - "path": "51003.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51004.data_spec", - "path": "51004.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51004.spec", - "path": "51004.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51004.swdir", - "path": "51004.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51004.swdir2", - "path": "51004.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51004.swr1", - "path": "51004.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51004.swr2", - "path": "51004.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51101.data_spec", - "path": "51101.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51101.spec", - "path": "51101.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51101.swdir", - "path": "51101.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51101.swdir2", - "path": "51101.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51101.swr1", - "path": "51101.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51101.swr2", - "path": "51101.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51201.data_spec", - "path": "51201.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51201.spec", - "path": "51201.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51201.swdir", - "path": "51201.swdir", - "size": 935936, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51201.swdir2", - "path": "51201.swdir2", - "size": 935936, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51201.swr1", - "path": "51201.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51201.swr2", - "path": "51201.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "51202.txt", - "path": "51202.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51205.data_spec", - "path": "51205.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51205.spec", - "path": "51205.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51205.swdir", - "path": "51205.swdir", - "size": 934912, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51205.swdir2", - "path": "51205.swdir2", - "size": 945152, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51205.swr1", - "path": "51205.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51205.swr2", - "path": "51205.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "51205.txt", - "path": "51205.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "51207.txt", - "path": "51207.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51208.data_spec", - "path": "51208.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51208.spec", - "path": "51208.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51208.swdir", - "path": "51208.swdir", - "size": 937984, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51208.swdir2", - "path": "51208.swdir2", - "size": 944128, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51208.swr1", - "path": "51208.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51208.swr2", - "path": "51208.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51209.data_spec", - "path": "51209.data_spec", - "size": 139264, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51209.spec", - "path": "51209.spec", - "size": 21504, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51209.swdir", - "path": "51209.swdir", - "size": 134144, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51209.swdir2", - "path": "51209.swdir2", - "size": 134144, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51209.swr1", - "path": "51209.swr1", - "size": 128000, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51209.swr2", - "path": "51209.swr2", - "size": 128000, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973600000, - "name": "51210.data_spec", - "path": "51210.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973600000, - "name": "51210.spec", - "path": "51210.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973600000, - "name": "51210.swdir", - "path": "51210.swdir", - "size": 925696, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973600000, - "name": "51210.swdir2", - "path": "51210.swdir2", - "size": 930816, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973600000, - "name": "51210.swr1", - "path": "51210.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973600000, - "name": "51210.swr2", - "path": "51210.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "51210.txt", - "path": "51210.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718973600000, - "name": "AMAA2.cwind", - "path": "AMAA2.cwind", - "size": 261120, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "AMAA2.txt", - "path": "AMAA2.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718973600000, - "name": "AUGA2.cwind", - "path": "AUGA2.cwind", - "size": 261120, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "AUGA2.txt", - "path": "AUGA2.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718973600000, - "name": "BLIA2.cwind", - "path": "BLIA2.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "BLIA2.txt", - "path": "BLIA2.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "CYGM4.txt", - "path": "CYGM4.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718973600000, - "name": "FILA2.cwind", - "path": "FILA2.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "FILA2.txt", - "path": "FILA2.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "LOPL1.txt", - "path": "LOPL1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "MBIN7.txt", - "path": "MBIN7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973600000, - "name": "MBXC1.ocean", - "path": "MBXC1.ocean", - "size": 502784, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "MBXC1.txt", - "path": "MBXC1.txt", - "size": 580608, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718973600000, - "name": "MRKA2.cwind", - "path": "MRKA2.cwind", - "size": 261120, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "MRKA2.txt", - "path": "MRKA2.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718973600000, - "name": "PILA2.cwind", - "path": "PILA2.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "PILA2.txt", - "path": "PILA2.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718973600000, - "name": "POTA2.cwind", - "path": "POTA2.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "POTA2.txt", - "path": "POTA2.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "PRIM4.txt", - "path": "PRIM4.txt", - "size": 96256, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973600000, - "name": "SDIA2.supl", - "path": "SDIA2.supl", - "size": 148480, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "SDIA2.txt", - "path": "SDIA2.txt", - "size": 290816, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973600000, - "name": "TIBC1.txt", - "path": "TIBC1.txt", - "size": 404480, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62127.txt", - "path": "62127.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62130.txt", - "path": "62130.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62144.txt", - "path": "62144.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62145.txt", - "path": "62145.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62146.txt", - "path": "62146.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62149.txt", - "path": "62149.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62165.txt", - "path": "62165.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62170.txt", - "path": "62170.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62304.txt", - "path": "62304.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "62305.txt", - "path": "62305.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "63110.txt", - "path": "63110.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "63112.txt", - "path": "63112.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "63115.txt", - "path": "63115.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973360000, - "name": "LJPC1.txt", - "path": "LJPC1.txt", - "size": 78848, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "41001.spec", - "path": "41001.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "41008.spec", - "path": "41008.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973300000, - "name": "41029.ocean", - "path": "41029.ocean", - "size": 68608, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973300000, - "name": "41064.ocean", - "path": "41064.ocean", - "size": 87040, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "41066.txt", - "path": "41066.txt", - "size": 78848, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "41076.txt", - "path": "41076.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "41110.data_spec", - "path": "41110.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "41110.spec", - "path": "41110.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "41110.swdir", - "path": "41110.swdir", - "size": 972800, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "41110.swdir2", - "path": "41110.swdir2", - "size": 969728, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "41110.swr1", - "path": "41110.swr1", - "size": 920576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "41110.swr2", - "path": "41110.swr2", - "size": 920576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "42001.spec", - "path": "42001.spec", - "size": 141312, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "42020.data_spec", - "path": "42020.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "42020.spec", - "path": "42020.spec", - "size": 108544, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "42020.swdir", - "path": "42020.swdir", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "42020.swdir2", - "path": "42020.swdir2", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "42020.swr1", - "path": "42020.swr1", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "42020.swr2", - "path": "42020.swr2", - "size": 1048576, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "44056.data_spec", - "path": "44056.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "44056.spec", - "path": "44056.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "44056.swdir", - "path": "44056.swdir", - "size": 959488, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "44056.swdir2", - "path": "44056.swdir2", - "size": 959488, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "44056.swr1", - "path": "44056.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "44056.swr2", - "path": "44056.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "44087.data_spec", - "path": "44087.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "44087.spec", - "path": "44087.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "44087.swdir", - "path": "44087.swdir", - "size": 865280, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "44087.swdir2", - "path": "44087.swdir2", - "size": 866304, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "44087.swr1", - "path": "44087.swr1", - "size": 821248, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "44087.swr2", - "path": "44087.swr2", - "size": 821248, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "44089.data_spec", - "path": "44089.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "44089.spec", - "path": "44089.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "44089.swdir", - "path": "44089.swdir", - "size": 970752, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "44089.swdir2", - "path": "44089.swdir2", - "size": 971776, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "44089.swr1", - "path": "44089.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "44089.swr2", - "path": "44089.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "44095.data_spec", - "path": "44095.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "44095.spec", - "path": "44095.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "44095.swdir", - "path": "44095.swdir", - "size": 961536, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "44095.swdir2", - "path": "44095.swdir2", - "size": 963584, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "44095.swr1", - "path": "44095.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "44095.swr2", - "path": "44095.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "45002.data_spec", - "path": "45002.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "45002.spec", - "path": "45002.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "45004.spec", - "path": "45004.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "45007.data_spec", - "path": "45007.data_spec", - "size": 1153434, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "45007.spec", - "path": "45007.spec", - "size": 118784, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "45007.swdir", - "path": "45007.swdir", - "size": 686080, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "45007.swdir2", - "path": "45007.swdir2", - "size": 686080, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "45007.swr1", - "path": "45007.swr1", - "size": 688128, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "45007.swr2", - "path": "45007.swr2", - "size": 688128, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "45012.spec", - "path": "45012.spec", - "size": 104448, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718973300000, - "name": "45013.adcp", - "path": "45013.adcp", - "size": 357376, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973300000, - "name": "45013.ocean", - "path": "45013.ocean", - "size": 176128, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "45013.spec", - "path": "45013.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718973300000, - "name": "45013.srad", - "path": "45013.srad", - "size": 81920, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "45211.data_spec", - "path": "45211.data_spec", - "size": 203776, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "45211.spec", - "path": "45211.spec", - "size": 29696, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46005.spec", - "path": "46005.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46028.spec", - "path": "46028.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "46084.data_spec", - "path": "46084.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46084.spec", - "path": "46084.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "46084.swdir", - "path": "46084.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "46084.swdir2", - "path": "46084.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "46084.swr1", - "path": "46084.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "46084.swr2", - "path": "46084.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "46145.txt", - "path": "46145.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "46205.txt", - "path": "46205.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "46248.data_spec", - "path": "46248.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46248.spec", - "path": "46248.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "46248.swdir", - "path": "46248.swdir", - "size": 985088, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "46248.swdir2", - "path": "46248.swdir2", - "size": 982016, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "46248.swr1", - "path": "46248.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "46248.swr2", - "path": "46248.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "46253.data_spec", - "path": "46253.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46253.spec", - "path": "46253.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "46253.swdir", - "path": "46253.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "46253.swdir2", - "path": "46253.swdir2", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "46253.swr1", - "path": "46253.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "46253.swr2", - "path": "46253.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "46256.data_spec", - "path": "46256.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46256.spec", - "path": "46256.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "46256.swdir", - "path": "46256.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "46256.swdir2", - "path": "46256.swdir2", - "size": 990208, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "46256.swr1", - "path": "46256.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "46256.swr2", - "path": "46256.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "46259.data_spec", - "path": "46259.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46259.spec", - "path": "46259.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "46259.swdir", - "path": "46259.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "46259.swdir2", - "path": "46259.swdir2", - "size": 983040, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "46259.swr1", - "path": "46259.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "46259.swr2", - "path": "46259.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "46280.data_spec", - "path": "46280.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46280.spec", - "path": "46280.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "46281.data_spec", - "path": "46281.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "46281.spec", - "path": "46281.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973300000, - "name": "51046.ocean", - "path": "51046.ocean", - "size": 247808, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "51202.data_spec", - "path": "51202.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "51202.spec", - "path": "51202.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "51202.swdir", - "path": "51202.swdir", - "size": 935936, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "51202.swdir2", - "path": "51202.swdir2", - "size": 943104, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "51202.swr1", - "path": "51202.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "51202.swr2", - "path": "51202.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "51207.data_spec", - "path": "51207.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "51207.spec", - "path": "51207.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973300000, - "name": "51207.swdir", - "path": "51207.swdir", - "size": 926720, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973300000, - "name": "51207.swdir2", - "path": "51207.swdir2", - "size": 932864, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973300000, - "name": "51207.swr1", - "path": "51207.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973300000, - "name": "51207.swr2", - "path": "51207.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62050.txt", - "path": "62050.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62105.txt", - "path": "62105.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62121.txt", - "path": "62121.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62124.txt", - "path": "62124.txt", - "size": 2048, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62148.txt", - "path": "62148.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62163.txt", - "path": "62163.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62164.txt", - "path": "62164.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "62442.txt", - "path": "62442.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "63117.txt", - "path": "63117.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "64045.txt", - "path": "64045.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "BLTA2.txt", - "path": "BLTA2.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "CDEA2.txt", - "path": "CDEA2.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718973300000, - "name": "CRGA2.supl", - "path": "CRGA2.supl", - "size": 51200, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "CRGA2.txt", - "path": "CRGA2.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "EROA2.txt", - "path": "EROA2.txt", - "size": 100352, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973300000, - "name": "LJPC1.data_spec", - "path": "LJPC1.data_spec", - "size": 1153434, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973300000, - "name": "LJPC1.spec", - "path": "LJPC1.spec", - "size": 58368, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "MBNN7.txt", - "path": "MBNN7.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973300000, - "name": "SISA2.txt", - "path": "SISA2.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973060000, - "name": "44088.txt", - "path": "44088.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718973000000, - "name": "41066.ocean", - "path": "41066.ocean", - "size": 68608, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973000000, - "name": "41076.spec", - "path": "41076.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973000000, - "name": "42036.data_spec", - "path": "42036.data_spec", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718973000000, - "name": "42036.spec", - "path": "42036.spec", - "size": 147456, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973000000, - "name": "42036.swdir", - "path": "42036.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973000000, - "name": "42036.swdir2", - "path": "42036.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973000000, - "name": "42036.swr1", - "path": "42036.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973000000, - "name": "42036.swr2", - "path": "42036.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973000000, - "name": "42099.data_spec", - "path": "42099.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973000000, - "name": "42099.swdir", - "path": "42099.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973000000, - "name": "42099.swdir2", - "path": "42099.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973000000, - "name": "42099.swr1", - "path": "42099.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973000000, - "name": "42099.swr2", - "path": "42099.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718973000000, - "name": "44088.data_spec", - "path": "44088.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718973000000, - "name": "44088.swdir", - "path": "44088.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718973000000, - "name": "44088.swdir2", - "path": "44088.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718973000000, - "name": "44088.swr1", - "path": "44088.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718973000000, - "name": "44088.swr2", - "path": "44088.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973000000, - "name": "46185.txt", - "path": "46185.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973000000, - "name": "LMFS1.txt", - "path": "LMFS1.txt", - "size": 612352, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718973000000, - "name": "PKBW3.txt", - "path": "PKBW3.txt", - "size": 362496, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "13001.txt", - "path": "13001.txt", - "size": 96256, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22101.drift", - "path": "22101.drift", - "size": 87040, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22102.drift", - "path": "22102.drift", - "size": 83968, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22103.drift", - "path": "22103.drift", - "size": 93184, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22104.drift", - "path": "22104.drift", - "size": 96256, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22105.drift", - "path": "22105.drift", - "size": 95232, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22106.drift", - "path": "22106.drift", - "size": 84992, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22107.drift", - "path": "22107.drift", - "size": 96256, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "22108.drift", - "path": "22108.drift", - "size": 82944, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "41053.adcp", - "path": "41053.adcp", - "size": 546816, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "41053.ocean", - "path": "41053.ocean", - "size": 88064, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "41053.spec", - "path": "41053.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "41056.adcp", - "path": "41056.adcp", - "size": 507904, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "41056.ocean", - "path": "41056.ocean", - "size": 88064, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "41056.spec", - "path": "41056.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972700000, - "name": "41108.data_spec", - "path": "41108.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972700000, - "name": "41108.swdir", - "path": "41108.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972700000, - "name": "41108.swdir2", - "path": "41108.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972700000, - "name": "41108.swr1", - "path": "41108.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972700000, - "name": "41108.swr2", - "path": "41108.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "41112.adcp", - "path": "41112.adcp", - "size": 61440, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972700000, - "name": "41112.data_spec", - "path": "41112.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "41112.spec", - "path": "41112.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972700000, - "name": "41112.swdir", - "path": "41112.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972700000, - "name": "41112.swdir2", - "path": "41112.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972700000, - "name": "41112.swr1", - "path": "41112.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972700000, - "name": "41112.swr2", - "path": "41112.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "41112.txt", - "path": "41112.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "41120.adcp", - "path": "41120.adcp", - "size": 67584, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972700000, - "name": "41120.data_spec", - "path": "41120.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "41120.spec", - "path": "41120.spec", - "size": 152576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972700000, - "name": "41120.swdir", - "path": "41120.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972700000, - "name": "41120.swdir2", - "path": "41120.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972700000, - "name": "41120.swr1", - "path": "41120.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972700000, - "name": "41120.swr2", - "path": "41120.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "41120.txt", - "path": "41120.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "42022.txt", - "path": "42022.txt", - "size": 199680, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "42085.adcp", - "path": "42085.adcp", - "size": 268288, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "42085.ocean", - "path": "42085.ocean", - "size": 88064, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "42085.spec", - "path": "42085.spec", - "size": 73728, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "42095.adcp", - "path": "42095.adcp", - "size": 69632, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "42099.adcp", - "path": "42099.adcp", - "size": 72704, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972700000, - "name": "44084.data_spec", - "path": "44084.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972700000, - "name": "44084.swdir", - "path": "44084.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972700000, - "name": "44084.swdir2", - "path": "44084.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972700000, - "name": "44084.swr1", - "path": "44084.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972700000, - "name": "44084.swr2", - "path": "44084.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972700000, - "name": "44085.data_spec", - "path": "44085.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972700000, - "name": "44085.swdir", - "path": "44085.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972700000, - "name": "44085.swdir2", - "path": "44085.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972700000, - "name": "44085.swr1", - "path": "44085.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972700000, - "name": "44085.swr2", - "path": "44085.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "44088.adcp", - "path": "44088.adcp", - "size": 71680, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "44088.spec", - "path": "44088.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972700000, - "name": "44090.data_spec", - "path": "44090.data_spec", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972700000, - "name": "44090.swdir", - "path": "44090.swdir", - "size": 982016, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972700000, - "name": "44090.swdir2", - "path": "44090.swdir2", - "size": 977920, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972700000, - "name": "44090.swr1", - "path": "44090.swr1", - "size": 937984, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972700000, - "name": "44090.swr2", - "path": "44090.swr2", - "size": 937984, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972700000, - "name": "44100.data_spec", - "path": "44100.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972700000, - "name": "44100.swdir", - "path": "44100.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972700000, - "name": "44100.swdir2", - "path": "44100.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972700000, - "name": "44100.swr1", - "path": "44100.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972700000, - "name": "44100.swr2", - "path": "44100.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "46036.txt", - "path": "46036.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "46100.ocean", - "path": "46100.ocean", - "size": 443392, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "46100.spec", - "path": "46100.spec", - "size": 63488, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718972700000, - "name": "46100.srad", - "path": "46100.srad", - "size": 207872, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "46100.txt", - "path": "46100.txt", - "size": 512000, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "46147.txt", - "path": "46147.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "46239.adcp", - "path": "46239.adcp", - "size": 49152, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "46267.adcp", - "path": "46267.adcp", - "size": 63488, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972700000, - "name": "46267.spec", - "path": "46267.spec", - "size": 147456, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "46267.txt", - "path": "46267.txt", - "size": 198656, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "51213.txt", - "path": "51213.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972700000, - "name": "52212.adcp", - "path": "52212.adcp", - "size": 55296, - "type": "file", - }, - { - "description": "Standard Meteorological Data for Drifting Buoys", - "modifiedAt": 1718972700000, - "name": "1801583.drift", - "path": "1801583.drift", - "size": 96256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "ACXS1.txt", - "path": "ACXS1.txt", - "size": 403456, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "APQF1.ocean", - "path": "APQF1.ocean", - "size": 282624, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "APXA2.txt", - "path": "APXA2.txt", - "size": 404480, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "APXF1.txt", - "path": "APXF1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "BGXN3.txt", - "path": "BGXN3.txt", - "size": 401408, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "BVQW1.ocean", - "path": "BVQW1.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "CPXC1.ocean", - "path": "CPXC1.ocean", - "size": 1153434, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "CVQV2.ocean", - "path": "CVQV2.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "DBQS1.ocean", - "path": "DBQS1.ocean", - "size": 351232, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "EAZC1.ocean", - "path": "EAZC1.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "EHSC1.ocean", - "path": "EHSC1.ocean", - "size": 323584, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "ELXC1.txt", - "path": "ELXC1.txt", - "size": 404480, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "GBHM6.ocean", - "path": "GBHM6.ocean", - "size": 294912, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "GDQM6.ocean", - "path": "GDQM6.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "GDXM6.txt", - "path": "GDXM6.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "GTQF1.ocean", - "path": "GTQF1.ocean", - "size": 6451, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "GTXF1.txt", - "path": "GTXF1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "HUQN6.ocean", - "path": "HUQN6.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "LCNA2.txt", - "path": "LCNA2.txt", - "size": 100352, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "LTQM2.ocean", - "path": "LTQM2.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "NAQR1.ocean", - "path": "NAQR1.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "NAXR1.txt", - "path": "NAXR1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "NIQS1.ocean", - "path": "NIQS1.ocean", - "size": 308224, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "NIWS1.txt", - "path": "NIWS1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "NPQN6.ocean", - "path": "NPQN6.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "OWMO1.txt", - "path": "OWMO1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "OWXO1.txt", - "path": "OWXO1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "PRTA2.txt", - "path": "PRTA2.txt", - "size": 100352, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "RKXF1.txt", - "path": "RKXF1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "SAQG1.ocean", - "path": "SAQG1.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "SAXG1.txt", - "path": "SAXG1.txt", - "size": 311296, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "SEQA2.ocean", - "path": "SEQA2.ocean", - "size": 349184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "SSBN7.txt", - "path": "SSBN7.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "TIQC1.ocean", - "path": "TIQC1.ocean", - "size": 350208, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "TIXC1.txt", - "path": "TIXC1.txt", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "WAQM3.ocean", - "path": "WAQM3.ocean", - "size": 119808, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "WEXM1.txt", - "path": "WEXM1.txt", - "size": 392192, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972700000, - "name": "WKQA1.ocean", - "path": "WKQA1.ocean", - "size": 348160, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972700000, - "name": "WKXA1.txt", - "path": "WKXA1.txt", - "size": 402432, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972460000, - "name": "46098.txt", - "path": "46098.txt", - "size": 500736, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972460000, - "name": "46099.txt", - "path": "46099.txt", - "size": 498688, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718972400000, - "name": "42013.srad", - "path": "42013.srad", - "size": 80896, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "42013.txt", - "path": "42013.txt", - "size": 199680, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972400000, - "name": "42022.adcp", - "path": "42022.adcp", - "size": 782336, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "42026.txt", - "path": "42026.txt", - "size": 199680, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "44032.txt", - "path": "44032.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "44033.txt", - "path": "44033.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "44034.txt", - "path": "44034.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972400000, - "name": "44073.ocean", - "path": "44073.ocean", - "size": 321536, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "44073.txt", - "path": "44073.txt", - "size": 370688, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972400000, - "name": "45164.ocean", - "path": "45164.ocean", - "size": 88064, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "45164.txt", - "path": "45164.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972400000, - "name": "46098.ocean", - "path": "46098.ocean", - "size": 433152, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972400000, - "name": "46098.spec", - "path": "46098.spec", - "size": 62464, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718972400000, - "name": "46098.srad", - "path": "46098.srad", - "size": 202752, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972400000, - "name": "46099.ocean", - "path": "46099.ocean", - "size": 433152, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972400000, - "name": "46099.spec", - "path": "46099.spec", - "size": 62464, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718972400000, - "name": "46099.srad", - "path": "46099.srad", - "size": 202752, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972400000, - "name": "46276.data_spec", - "path": "46276.data_spec", - "size": 782336, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972400000, - "name": "46276.swdir", - "path": "46276.swdir", - "size": 775168, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972400000, - "name": "46276.swdir2", - "path": "46276.swdir2", - "size": 774144, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972400000, - "name": "46276.swr1", - "path": "46276.swr1", - "size": 724992, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972400000, - "name": "46276.swr2", - "path": "46276.swr2", - "size": 722944, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718972400000, - "name": "51213.data_spec", - "path": "51213.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972400000, - "name": "51213.spec", - "path": "51213.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718972400000, - "name": "51213.swdir", - "path": "51213.swdir", - "size": 986112, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718972400000, - "name": "51213.swdir2", - "path": "51213.swdir2", - "size": 987136, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718972400000, - "name": "51213.swr1", - "path": "51213.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718972400000, - "name": "51213.swr2", - "path": "51213.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "CMPO1.txt", - "path": "CMPO1.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "CSPA2.txt", - "path": "CSPA2.txt", - "size": 100352, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "NREP1.txt", - "path": "NREP1.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972400000, - "name": "PBPA2.txt", - "path": "PBPA2.txt", - "size": 100352, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718972400000, - "name": "SSBN7.spec", - "path": "SSBN7.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972100000, - "name": "44029.adcp", - "path": "44029.adcp", - "size": 285696, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "44029.ocean", - "path": "44029.ocean", - "size": 86016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "44029.txt", - "path": "44029.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972100000, - "name": "44030.adcp", - "path": "44030.adcp", - "size": 242688, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "44030.ocean", - "path": "44030.ocean", - "size": 86016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "44030.txt", - "path": "44030.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972100000, - "name": "44032.adcp", - "path": "44032.adcp", - "size": 437248, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972100000, - "name": "44033.adcp", - "path": "44033.adcp", - "size": 474112, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "44033.ocean", - "path": "44033.ocean", - "size": 86016, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718972100000, - "name": "44034.adcp", - "path": "44034.adcp", - "size": 430080, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "44037.ocean", - "path": "44037.ocean", - "size": 84992, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "44037.txt", - "path": "44037.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "46116.ocean", - "path": "46116.ocean", - "size": 405504, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "46117.ocean", - "path": "46117.ocean", - "size": 854016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "BURL1.txt", - "path": "BURL1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718972100000, - "name": "BUZM3.cwind", - "path": "BUZM3.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "BUZM3.txt", - "path": "BUZM3.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "CBLO1.txt", - "path": "CBLO1.txt", - "size": 595968, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718972100000, - "name": "CLKN7.cwind", - "path": "CLKN7.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "CLKN7.txt", - "path": "CLKN7.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718972100000, - "name": "IOSN3.cwind", - "path": "IOSN3.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "IOSN3.txt", - "path": "IOSN3.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "KP58.txt", - "path": "KP58.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718972100000, - "name": "MISM1.cwind", - "path": "MISM1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "MISM1.txt", - "path": "MISM1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718972100000, - "name": "PTAT2.cwind", - "path": "PTAT2.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "PTAT2.txt", - "path": "PTAT2.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "SEFO3.ocean", - "path": "SEFO3.ocean", - "size": 877568, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718972100000, - "name": "SETO3.ocean", - "path": "SETO3.ocean", - "size": 673792, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718972100000, - "name": "VENF1.cwind", - "path": "VENF1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718972100000, - "name": "VENF1.txt", - "path": "VENF1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46060.txt", - "path": "46060.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46077.txt", - "path": "46077.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46081.txt", - "path": "46081.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46083.txt", - "path": "46083.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46215.txt", - "path": "46215.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46240.txt", - "path": "46240.txt", - "size": 201728, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46246.txt", - "path": "46246.txt", - "size": 86016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971860000, - "name": "46276.txt", - "path": "46276.txt", - "size": 158720, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718971800000, - "name": "32ST0.ocean", - "path": "32ST0.ocean", - "size": 84992, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718971800000, - "name": "32ST0.srad", - "path": "32ST0.srad", - "size": 39936, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "32ST0.txt", - "path": "32ST0.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718971800000, - "name": "51WH0.ocean", - "path": "51WH0.ocean", - "size": 86016, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718971800000, - "name": "51WH0.srad", - "path": "51WH0.srad", - "size": 39936, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "51WH0.txt", - "path": "51WH0.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "44137.txt", - "path": "44137.txt", - "size": 2458, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "44139.txt", - "path": "44139.txt", - "size": 2458, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "44150.txt", - "path": "44150.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "44258.txt", - "path": "44258.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45132.txt", - "path": "45132.txt", - "size": 2458, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45135.txt", - "path": "45135.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45136.txt", - "path": "45136.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45137.txt", - "path": "45137.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45139.txt", - "path": "45139.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45140.txt", - "path": "45140.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45142.txt", - "path": "45142.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45143.txt", - "path": "45143.txt", - "size": 2458, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45144.txt", - "path": "45144.txt", - "size": 1331, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45145.txt", - "path": "45145.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45148.txt", - "path": "45148.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45149.txt", - "path": "45149.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45151.txt", - "path": "45151.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45152.txt", - "path": "45152.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45154.txt", - "path": "45154.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "45159.txt", - "path": "45159.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "46060.cwind", - "path": "46060.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718971800000, - "name": "46060.supl", - "path": "46060.supl", - "size": 52224, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "46077.cwind", - "path": "46077.cwind", - "size": 245760, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718971800000, - "name": "46077.supl", - "path": "46077.supl", - "size": 49152, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "46081.cwind", - "path": "46081.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971800000, - "name": "46081.data_spec", - "path": "46081.data_spec", - "size": 693248, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718971800000, - "name": "46081.supl", - "path": "46081.supl", - "size": 52224, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1718971800000, - "name": "46083.supl", - "path": "46083.supl", - "size": 52224, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "46131.txt", - "path": "46131.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "46132.txt", - "path": "46132.txt", - "size": 2458, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "46146.txt", - "path": "46146.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "46181.txt", - "path": "46181.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "46206.txt", - "path": "46206.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971800000, - "name": "46215.data_spec", - "path": "46215.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971800000, - "name": "46215.spec", - "path": "46215.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718971800000, - "name": "46215.swdir", - "path": "46215.swdir", - "size": 991232, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718971800000, - "name": "46215.swdir2", - "path": "46215.swdir2", - "size": 990208, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718971800000, - "name": "46215.swr1", - "path": "46215.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718971800000, - "name": "46215.swr2", - "path": "46215.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971800000, - "name": "46240.data_spec", - "path": "46240.data_spec", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971800000, - "name": "46240.spec", - "path": "46240.spec", - "size": 150528, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718971800000, - "name": "46240.swdir", - "path": "46240.swdir", - "size": 983040, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718971800000, - "name": "46240.swdir2", - "path": "46240.swdir2", - "size": 985088, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718971800000, - "name": "46240.swr1", - "path": "46240.swr1", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718971800000, - "name": "46240.swr2", - "path": "46240.swr2", - "size": 923648, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971800000, - "name": "46276.spec", - "path": "46276.spec", - "size": 118784, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "ASBO1.txt", - "path": "ASBO1.txt", - "size": 598016, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "CLSM4.txt", - "path": "CLSM4.txt", - "size": 613376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "CPXC1.txt", - "path": "CPXC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "DBLN6.cwind", - "path": "DBLN6.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "DBLN6.txt", - "path": "DBLN6.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "DESW1.cwind", - "path": "DESW1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "DESW1.txt", - "path": "DESW1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "DISW3.cwind", - "path": "DISW3.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "DISW3.txt", - "path": "DISW3.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "FFIA2.cwind", - "path": "FFIA2.cwind", - "size": 259072, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "FFIA2.txt", - "path": "FFIA2.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "GELO1.txt", - "path": "GELO1.txt", - "size": 305152, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "GTRM4.txt", - "path": "GTRM4.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "HHLO1.txt", - "path": "HHLO1.txt", - "size": 592896, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "KNSW3.txt", - "path": "KNSW3.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "MDRM1.cwind", - "path": "MDRM1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "MDRM1.txt", - "path": "MDRM1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "NWPO3.cwind", - "path": "NWPO3.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "NWPO3.txt", - "path": "NWPO3.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718971800000, - "name": "OKSI2.srad", - "path": "OKSI2.srad", - "size": 39936, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "OKSI2.txt", - "path": "OKSI2.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "OLCN6.txt", - "path": "OLCN6.txt", - "size": 609280, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "PILM4.cwind", - "path": "PILM4.cwind", - "size": 259072, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "PILM4.txt", - "path": "PILM4.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "PSCM4.txt", - "path": "PSCM4.txt", - "size": 18432, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "ROAM4.cwind", - "path": "ROAM4.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "ROAM4.txt", - "path": "ROAM4.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "RPRN6.txt", - "path": "RPRN6.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "SBIO1.cwind", - "path": "SBIO1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "SBIO1.txt", - "path": "SBIO1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "SBLM4.txt", - "path": "SBLM4.txt", - "size": 610304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "SJOM4.txt", - "path": "SJOM4.txt", - "size": 606208, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "TPLM2.cwind", - "path": "TPLM2.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "TPLM2.txt", - "path": "TPLM2.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971800000, - "name": "WPOW1.cwind", - "path": "WPOW1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "WPOW1.txt", - "path": "WPOW1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971800000, - "name": "YGNN6.txt", - "path": "YGNN6.txt", - "size": 591872, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "44488.txt", - "path": "44488.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "44489.txt", - "path": "44489.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971500000, - "name": "46059.data_spec", - "path": "46059.data_spec", - "size": 712704, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718971500000, - "name": "46059.swdir", - "path": "46059.swdir", - "size": 683008, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718971500000, - "name": "46059.swdir2", - "path": "46059.swdir2", - "size": 685056, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718971500000, - "name": "46059.swr1", - "path": "46059.swr1", - "size": 675840, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718971500000, - "name": "46059.swr2", - "path": "46059.swr2", - "size": 675840, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971500000, - "name": "46060.data_spec", - "path": "46060.data_spec", - "size": 721920, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971500000, - "name": "46060.spec", - "path": "46060.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718971500000, - "name": "46060.swdir", - "path": "46060.swdir", - "size": 684032, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718971500000, - "name": "46060.swdir2", - "path": "46060.swdir2", - "size": 683008, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718971500000, - "name": "46060.swr1", - "path": "46060.swr1", - "size": 652288, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718971500000, - "name": "46060.swr2", - "path": "46060.swr2", - "size": 652288, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971500000, - "name": "46077.data_spec", - "path": "46077.data_spec", - "size": 717824, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971500000, - "name": "46077.spec", - "path": "46077.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718971500000, - "name": "46077.swdir", - "path": "46077.swdir", - "size": 685056, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718971500000, - "name": "46077.swdir2", - "path": "46077.swdir2", - "size": 685056, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718971500000, - "name": "46077.swr1", - "path": "46077.swr1", - "size": 667648, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718971500000, - "name": "46077.swr2", - "path": "46077.swr2", - "size": 667648, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971500000, - "name": "46081.spec", - "path": "46081.spec", - "size": 72704, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971500000, - "name": "46083.data_spec", - "path": "46083.data_spec", - "size": 726016, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971500000, - "name": "46083.spec", - "path": "46083.spec", - "size": 75776, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718971500000, - "name": "46083.swdir", - "path": "46083.swdir", - "size": 717824, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718971500000, - "name": "46083.swdir2", - "path": "46083.swdir2", - "size": 716800, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718971500000, - "name": "46083.swr1", - "path": "46083.swr1", - "size": 684032, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718971500000, - "name": "46083.swr2", - "path": "46083.swr2", - "size": 684032, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1718971500000, - "name": "46246.data_spec", - "path": "46246.data_spec", - "size": 422912, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971500000, - "name": "46246.spec", - "path": "46246.spec", - "size": 64512, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718971500000, - "name": "46246.swdir", - "path": "46246.swdir", - "size": 417792, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718971500000, - "name": "46246.swdir2", - "path": "46246.swdir2", - "size": 416768, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718971500000, - "name": "46246.swr1", - "path": "46246.swr1", - "size": 390144, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718971500000, - "name": "46246.swr2", - "path": "46246.swr2", - "size": 390144, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "46303.txt", - "path": "46303.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "46304.txt", - "path": "46304.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "BDRN4.txt", - "path": "BDRN4.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "FHPF1.txt", - "path": "FHPF1.txt", - "size": 992256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "FRDW1.txt", - "path": "FRDW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "HBYC1.txt", - "path": "HBYC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "KGNA.txt", - "path": "KGNA.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "KP53.txt", - "path": "KP53.txt", - "size": 75776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "LAPW1.txt", - "path": "LAPW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "MEYC1.txt", - "path": "MEYC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "MOKH1.txt", - "path": "MOKH1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "NTBC1.txt", - "path": "NTBC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "PTAW1.txt", - "path": "PTAW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971500000, - "name": "SAUF1.cwind", - "path": "SAUF1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "SAUF1.txt", - "path": "SAUF1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971500000, - "name": "SGNW3.cwind", - "path": "SGNW3.cwind", - "size": 259072, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "SGNW3.txt", - "path": "SGNW3.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "SGOF1.txt", - "path": "SGOF1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Continuous Winds Data", - "modifiedAt": 1718971500000, - "name": "SPGF1.cwind", - "path": "SPGF1.cwind", - "size": 260096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "SPGF1.txt", - "path": "SPGF1.txt", - "size": 102400, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "WCRP1.txt", - "path": "WCRP1.txt", - "size": 608256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971500000, - "name": "WPTW1.txt", - "path": "WPTW1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718971200000, - "name": "46059.spec", - "path": "46059.spec", - "size": 74752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "ABYA2.txt", - "path": "ABYA2.txt", - "size": 99328, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "BDVF1.txt", - "path": "BDVF1.txt", - "size": 78848, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "BKYF1.txt", - "path": "BKYF1.txt", - "size": 79872, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "BNKF1.txt", - "path": "BNKF1.txt", - "size": 79872, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "BOBF1.txt", - "path": "BOBF1.txt", - "size": 79872, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "CANF1.txt", - "path": "CANF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "CNBF1.txt", - "path": "CNBF1.txt", - "size": 77824, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "DKKF1.txt", - "path": "DKKF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "GBIF1.txt", - "path": "GBIF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "GBTF1.txt", - "path": "GBTF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "GKYF1.txt", - "path": "GKYF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "HCEF1.txt", - "path": "HCEF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "JBYF1.txt", - "path": "JBYF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "JKYF1.txt", - "path": "JKYF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "LBSF1.txt", - "path": "LBSF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "LMDF1.txt", - "path": "LMDF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "LMRF1.txt", - "path": "LMRF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "LRIF1.txt", - "path": "LRIF1.txt", - "size": 75776, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "LRKF1.txt", - "path": "LRKF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "LSNF1.txt", - "path": "LSNF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "MDKF1.txt", - "path": "MDKF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "MNBF1.txt", - "path": "MNBF1.txt", - "size": 74752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "MUKF1.txt", - "path": "MUKF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "NRRF1.txt", - "path": "NRRF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "PKYF1.txt", - "path": "PKYF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "SREF1.txt", - "path": "SREF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "TBYF1.txt", - "path": "TBYF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "TCVF1.txt", - "path": "TCVF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "THRF1.txt", - "path": "THRF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "TPEF1.txt", - "path": "TPEF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "TRRF1.txt", - "path": "TRRF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "WIWF1.txt", - "path": "WIWF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "WPLF1.txt", - "path": "WPLF1.txt", - "size": 76800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718971200000, - "name": "WRBF1.txt", - "path": "WRBF1.txt", - "size": 74752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970960000, - "name": "45162.txt", - "path": "45162.txt", - "size": 244736, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970960000, - "name": "45163.txt", - "path": "45163.txt", - "size": 238592, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718970900000, - "name": "45162.ocean", - "path": "45162.ocean", - "size": 209920, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718970900000, - "name": "45162.spec", - "path": "45162.spec", - "size": 180224, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718970900000, - "name": "45163.ocean", - "path": "45163.ocean", - "size": 198656, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718970900000, - "name": "45163.spec", - "path": "45163.spec", - "size": 176128, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718970900000, - "name": "BILW3.ocean", - "path": "BILW3.ocean", - "size": 125952, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970900000, - "name": "BWSF1.txt", - "path": "BWSF1.txt", - "size": 83968, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970600000, - "name": "APNM4.txt", - "path": "APNM4.txt", - "size": 595968, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970600000, - "name": "CHII2.txt", - "path": "CHII2.txt", - "size": 605184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970600000, - "name": "MCYI3.txt", - "path": "MCYI3.txt", - "size": 604160, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970600000, - "name": "MKGM4.txt", - "path": "MKGM4.txt", - "size": 603136, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970600000, - "name": "MLWW3.txt", - "path": "MLWW3.txt", - "size": 605184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970600000, - "name": "TBIM4.txt", - "path": "TBIM4.txt", - "size": 542720, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718970300000, - "name": "45161.spec", - "path": "45161.spec", - "size": 149504, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970300000, - "name": "45161.txt", - "path": "45161.txt", - "size": 199680, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970300000, - "name": "SRLM4.txt", - "path": "SRLM4.txt", - "size": 202752, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970000000, - "name": "13009.txt", - "path": "13009.txt", - "size": 41984, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970000000, - "name": "15002.txt", - "path": "15002.txt", - "size": 49152, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970000000, - "name": "15009.txt", - "path": "15009.txt", - "size": 48128, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970000000, - "name": "31001.txt", - "path": "31001.txt", - "size": 39936, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970000000, - "name": "31002.txt", - "path": "31002.txt", - "size": 44032, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970000000, - "name": "31005.txt", - "path": "31005.txt", - "size": 51200, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718970000000, - "name": "44013.swdir", - "path": "44013.swdir", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718970000000, - "name": "44013.swdir2", - "path": "44013.swdir2", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718970000000, - "name": "44013.swr1", - "path": "44013.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718970000000, - "name": "44013.swr2", - "path": "44013.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718970000000, - "name": "SVNM4.txt", - "path": "SVNM4.txt", - "size": 601088, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718969400000, - "name": "53056.txt", - "path": "53056.txt", - "size": 97280, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718969100000, - "name": "SHPF1.txt", - "path": "SHPF1.txt", - "size": 668672, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718968800000, - "name": "THLO1.txt", - "path": "THLO1.txt", - "size": 101376, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718968200000, - "name": "45008.swdir", - "path": "45008.swdir", - "size": 893952, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718968200000, - "name": "45008.swdir2", - "path": "45008.swdir2", - "size": 893952, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718968200000, - "name": "45008.swr1", - "path": "45008.swr1", - "size": 893952, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718968200000, - "name": "45008.swr2", - "path": "45008.swr2", - "size": 893952, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718964600000, - "name": "45028.srad", - "path": "45028.srad", - "size": 152576, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718962800000, - "name": "45027.srad", - "path": "45027.srad", - "size": 153600, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718961000000, - "name": "45215.swdir", - "path": "45215.swdir", - "size": 399360, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718961000000, - "name": "45215.swdir2", - "path": "45215.swdir2", - "size": 399360, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718961000000, - "name": "45215.swr1", - "path": "45215.swr1", - "size": 375808, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718961000000, - "name": "45215.swr2", - "path": "45215.swr2", - "size": 375808, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718960100000, - "name": "13008.txt", - "path": "13008.txt", - "size": 95232, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "13002.txt", - "path": "13002.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "14048.txt", - "path": "14048.txt", - "size": 93184, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "14049.txt", - "path": "14049.txt", - "size": 91136, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "15001.txt", - "path": "15001.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "15006.txt", - "path": "15006.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "15008.txt", - "path": "15008.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "31003.txt", - "path": "31003.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "31004.txt", - "path": "31004.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "31006.txt", - "path": "31006.txt", - "size": 96256, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "31007.txt", - "path": "31007.txt", - "size": 98304, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718958300000, - "name": "41139.txt", - "path": "41139.txt", - "size": 97280, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718958300000, - "name": "ACQS1.ocean", - "path": "ACQS1.ocean", - "size": 340992, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718956500000, - "name": "48400.txt", - "path": "48400.txt", - "size": 95232, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718956200000, - "name": "23228.dart", - "path": "23228.dart", - "size": 109568, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62127.spec", - "path": "62127.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62130.spec", - "path": "62130.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62144.spec", - "path": "62144.spec", - "size": 351, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62145.spec", - "path": "62145.spec", - "size": 421, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62146.spec", - "path": "62146.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62149.spec", - "path": "62149.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62165.spec", - "path": "62165.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62170.spec", - "path": "62170.spec", - "size": 421, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62304.spec", - "path": "62304.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "62305.spec", - "path": "62305.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "63110.spec", - "path": "63110.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "63112.spec", - "path": "63112.spec", - "size": 491, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718955900000, - "name": "63115.spec", - "path": "63115.spec", - "size": 351, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "32401.dart", - "path": "32401.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "55012.dart", - "path": "55012.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "55015.dart", - "path": "55015.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "56003.dart", - "path": "56003.dart", - "size": 148480, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5401001.dart", - "path": "5401001.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5401002.dart", - "path": "5401002.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5401004.dart", - "path": "5401004.dart", - "size": 132096, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5401005.dart", - "path": "5401005.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5501002.dart", - "path": "5501002.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5501004.dart", - "path": "5501004.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5501005.dart", - "path": "5501005.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5501006.dart", - "path": "5501006.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955600000, - "name": "5501007.dart", - "path": "5501007.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955300000, - "name": "23227.dart", - "path": "23227.dart", - "size": 108544, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955000000, - "name": "34420.dart", - "path": "34420.dart", - "size": 148480, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955000000, - "name": "43412.dart", - "path": "43412.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718955000000, - "name": "46208.txt", - "path": "46208.txt", - "size": 282, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955000000, - "name": "52403.dart", - "path": "52403.dart", - "size": 133120, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955000000, - "name": "55023.dart", - "path": "55023.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718955000000, - "name": "5401000.dart", - "path": "5401000.dart", - "size": 132096, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "21414.dart", - "path": "21414.dart", - "size": 126976, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "21415.dart", - "path": "21415.dart", - "size": 131072, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "21419.dart", - "path": "21419.dart", - "size": 131072, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "32402.dart", - "path": "32402.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "32404.dart", - "path": "32404.dart", - "size": 131072, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "32411.dart", - "path": "32411.dart", - "size": 132096, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "41421.dart", - "path": "41421.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "41425.dart", - "path": "41425.dart", - "size": 128000, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "42407.dart", - "path": "42407.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "42409.dart", - "path": "42409.dart", - "size": 143360, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "43413.dart", - "path": "43413.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "44402.dart", - "path": "44402.dart", - "size": 129024, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "44403.dart", - "path": "44403.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46402.dart", - "path": "46402.dart", - "size": 96256, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46403.dart", - "path": "46403.dart", - "size": 117760, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46404.dart", - "path": "46404.dart", - "size": 129024, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46408.dart", - "path": "46408.dart", - "size": 133120, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46409.dart", - "path": "46409.dart", - "size": 132096, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46410.dart", - "path": "46410.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46411.dart", - "path": "46411.dart", - "size": 17408, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46413.dart", - "path": "46413.dart", - "size": 118784, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46414.dart", - "path": "46414.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46415.dart", - "path": "46415.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46416.dart", - "path": "46416.dart", - "size": 130048, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "46419.dart", - "path": "46419.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954700000, - "name": "52401.dart", - "path": "52401.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718954400000, - "name": "32403.dart", - "path": "32403.dart", - "size": 133120, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718953500000, - "name": "32068.dart", - "path": "32068.dart", - "size": 134144, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718953500000, - "name": "32069.dart", - "path": "32069.dart", - "size": 131072, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718952900000, - "name": "DRSD1.txt", - "path": "DRSD1.txt", - "size": 78848, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718951100000, - "name": "MLSC1.ocean", - "path": "MLSC1.ocean", - "size": 529408, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718951100000, - "name": "MLSC1.txt", - "path": "MLSC1.txt", - "size": 1153434, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718947500000, - "name": "41052.adcp", - "path": "41052.adcp", - "size": 654336, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718947500000, - "name": "41052.ocean", - "path": "41052.ocean", - "size": 89088, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718947500000, - "name": "41052.spec", - "path": "41052.spec", - "size": 63488, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718947500000, - "name": "41052.txt", - "path": "41052.txt", - "size": 521216, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718947500000, - "name": "SFXC1.txt", - "path": "SFXC1.txt", - "size": 107520, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718946600000, - "name": "45012.swdir", - "path": "45012.swdir", - "size": 499712, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718946600000, - "name": "45012.swdir2", - "path": "45012.swdir2", - "size": 499712, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718946600000, - "name": "45012.swr1", - "path": "45012.swr1", - "size": 498688, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718946600000, - "name": "45012.swr2", - "path": "45012.swr2", - "size": 498688, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718946300000, - "name": "23019.txt", - "path": "23019.txt", - "size": 86016, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718946000000, - "name": "HREF1.ocean", - "path": "HREF1.ocean", - "size": 51200, - "type": "file", - }, - { - "description": "Hourly Rain Data", - "modifiedAt": 1718946000000, - "name": "HREF1.rain", - "path": "HREF1.rain", - "size": 15360, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718946000000, - "name": "HREF1.txt", - "path": "HREF1.txt", - "size": 60416, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718942100000, - "name": "52214.adcp", - "path": "52214.adcp", - "size": 46080, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718940960000, - "name": "62107.txt", - "path": "62107.txt", - "size": 752, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718940000000, - "name": "46275.adcp", - "path": "46275.adcp", - "size": 58368, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718934900000, - "name": "JCTN4.ocean", - "path": "JCTN4.ocean", - "size": 355328, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718934300000, - "name": "62107.spec", - "path": "62107.spec", - "size": 281, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718933400000, - "name": "21420.dart", - "path": "21420.dart", - "size": 110592, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718933100000, - "name": "51407.dart", - "path": "51407.dart", - "size": 133120, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718932500000, - "name": "PSXC1.txt", - "path": "PSXC1.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718928300000, - "name": "CHAO3.txt", - "path": "CHAO3.txt", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718914200000, - "name": "45004.swdir", - "path": "45004.swdir", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718914200000, - "name": "45004.swdir2", - "path": "45004.swdir2", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718914200000, - "name": "45004.swr1", - "path": "45004.swr1", - "size": 1048576, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718914200000, - "name": "45004.swr2", - "path": "45004.swr2", - "size": 1048576, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718913300000, - "name": "JOQP4.ocean", - "path": "JOQP4.ocean", - "size": 5325, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718912400000, - "name": "45001.swdir", - "path": "45001.swdir", - "size": 990208, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718912400000, - "name": "45001.swdir2", - "path": "45001.swdir2", - "size": 989184, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718912400000, - "name": "45001.swr1", - "path": "45001.swr1", - "size": 984064, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718912400000, - "name": "45001.swr2", - "path": "45001.swr2", - "size": 984064, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718911500000, - "name": "JOBP4.ocean", - "path": "JOBP4.ocean", - "size": 5325, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718910900000, - "name": "45211.swdir", - "path": "45211.swdir", - "size": 135168, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718910900000, - "name": "45211.swdir2", - "path": "45211.swdir2", - "size": 135168, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718910900000, - "name": "45211.swr1", - "path": "45211.swr1", - "size": 126976, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718910900000, - "name": "45211.swr2", - "path": "45211.swr2", - "size": 126976, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718907000000, - "name": "45003.swdir", - "path": "45003.swdir", - "size": 901120, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718907000000, - "name": "45003.swdir2", - "path": "45003.swdir2", - "size": 901120, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718907000000, - "name": "45003.swr1", - "path": "45003.swr1", - "size": 893952, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718907000000, - "name": "45003.swr2", - "path": "45003.swr2", - "size": 893952, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718904300000, - "name": "46108.swdir", - "path": "46108.swdir", - "size": 1153434, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718904300000, - "name": "46108.swdir2", - "path": "46108.swdir2", - "size": 1153434, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718904300000, - "name": "46108.swr1", - "path": "46108.swr1", - "size": 1153434, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718904300000, - "name": "46108.swr2", - "path": "46108.swr2", - "size": 1153434, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718894400000, - "name": "45002.swdir", - "path": "45002.swdir", - "size": 887808, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718894400000, - "name": "45002.swdir2", - "path": "45002.swdir2", - "size": 888832, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718894400000, - "name": "45002.swr1", - "path": "45002.swr1", - "size": 887808, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718894400000, - "name": "45002.swr2", - "path": "45002.swr2", - "size": 887808, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718873400000, - "name": "45006.swdir", - "path": "45006.swdir", - "size": 66560, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718873400000, - "name": "45006.swdir2", - "path": "45006.swdir2", - "size": 66560, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718873400000, - "name": "45006.swr1", - "path": "45006.swr1", - "size": 66560, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718873400000, - "name": "45006.swr2", - "path": "45006.swr2", - "size": 66560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718864100000, - "name": "TFBLK.txt", - "path": "TFBLK.txt", - "size": 20480, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718860500000, - "name": "TFBLK.spec", - "path": "TFBLK.spec", - "size": 6349, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718850300000, - "name": "23223.dart", - "path": "23223.dart", - "size": 86016, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718847600000, - "name": "5401003.dart", - "path": "5401003.dart", - "size": 136192, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718829300000, - "name": "PRUR1.txt", - "path": "PRUR1.txt", - "size": 883712, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718735100000, - "name": "GBQN3.ocean", - "path": "GBQN3.ocean", - "size": 7782, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1718705400000, - "name": "46081.swdir", - "path": "46081.swdir", - "size": 110592, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1718705400000, - "name": "46081.swdir2", - "path": "46081.swdir2", - "size": 110592, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1718705400000, - "name": "46081.swr1", - "path": "46081.swr1", - "size": 111616, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1718705400000, - "name": "46081.swr2", - "path": "46081.swr2", - "size": 111616, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718673300000, - "name": "42026.adcp", - "path": "42026.adcp", - "size": 1153434, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718671800000, - "name": "23220.dart", - "path": "23220.dart", - "size": 93184, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1718659200000, - "name": "45200.spec", - "path": "45200.spec", - "size": 157696, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718634000000, - "name": "42023.txt", - "path": "42023.txt", - "size": 173056, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718589300000, - "name": "44078.ocean", - "path": "44078.ocean", - "size": 519168, - "type": "file", - }, - { - "description": "Solar Radiation Data", - "modifiedAt": 1718589300000, - "name": "44078.srad", - "path": "44078.srad", - "size": 243712, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1718587500000, - "name": "21416.dart", - "path": "21416.dart", - "size": 119808, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718586900000, - "name": "44041.adcp", - "path": "44041.adcp", - "size": 153600, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718585700000, - "name": "44078.txt", - "path": "44078.txt", - "size": 601088, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718577300000, - "name": "62114.txt", - "path": "62114.txt", - "size": 1946, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718416800000, - "name": "PRJC1.txt", - "path": "PRJC1.txt", - "size": 959488, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718406600000, - "name": "AKXA2.txt", - "path": "AKXA2.txt", - "size": 555008, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718339100000, - "name": "MAQT2.ocean", - "path": "MAQT2.ocean", - "size": 5325, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718330100000, - "name": "MQMT2.ocean", - "path": "MQMT2.ocean", - "size": 5018, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718224200000, - "name": "44022.txt", - "path": "44022.txt", - "size": 274432, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718223900000, - "name": "LDLC3.txt", - "path": "LDLC3.txt", - "size": 282624, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718164500000, - "name": "CWQO3.ocean", - "path": "CWQO3.ocean", - "size": 2765, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718150100000, - "name": "ZBQN7.ocean", - "path": "ZBQN7.ocean", - "size": 1434, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1718126100000, - "name": "44043.adcp", - "path": "44043.adcp", - "size": 355328, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718126100000, - "name": "44043.ocean", - "path": "44043.ocean", - "size": 819200, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1718126100000, - "name": "44043.txt", - "path": "44043.txt", - "size": 943104, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1718088900000, - "name": "SOQO3.ocean", - "path": "SOQO3.ocean", - "size": 2765, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1717939500000, - "name": "21418.dart", - "path": "21418.dart", - "size": 124928, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1717828800000, - "name": "CQUC1.ocean", - "path": "CQUC1.ocean", - "size": 287744, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717828800000, - "name": "CQUC1.txt", - "path": "CQUC1.txt", - "size": 332800, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717799700000, - "name": "64046.txt", - "path": "64046.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717751700000, - "name": "SRST2.txt", - "path": "SRST2.txt", - "size": 30720, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717721100000, - "name": "KCXA2.txt", - "path": "KCXA2.txt", - "size": 250880, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1717707300000, - "name": "MWQT2.ocean", - "path": "MWQT2.ocean", - "size": 4096, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717649700000, - "name": "MIST2.txt", - "path": "MIST2.txt", - "size": 3174, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1717637100000, - "name": "JCQN4.ocean", - "path": "JCQN4.ocean", - "size": 2765, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717532700000, - "name": "JOXP4.txt", - "path": "JOXP4.txt", - "size": 4710, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717508700000, - "name": "62081.txt", - "path": "62081.txt", - "size": 2560, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1717473300000, - "name": "EVMC1.ocean", - "path": "EVMC1.ocean", - "size": 2662, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717464600000, - "name": "42084.txt", - "path": "42084.txt", - "size": 203776, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1717463700000, - "name": "42084.data_spec", - "path": "42084.data_spec", - "size": 1572864, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1717463700000, - "name": "42084.spec", - "path": "42084.spec", - "size": 151552, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1717463700000, - "name": "42084.swdir", - "path": "42084.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1717463700000, - "name": "42084.swdir2", - "path": "42084.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1717463700000, - "name": "42084.swr1", - "path": "42084.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1717463700000, - "name": "42084.swr2", - "path": "42084.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1717421100000, - "name": "52405.dart", - "path": "52405.dart", - "size": 133120, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1717419300000, - "name": "42084.adcp", - "path": "42084.adcp", - "size": 28672, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1717304400000, - "name": "GKYF1.ocean", - "path": "GKYF1.ocean", - "size": 48128, - "type": "file", - }, - { - "description": "Raw Spectral Wave Data", - "modifiedAt": 1717242900000, - "name": "52201.data_spec", - "path": "52201.data_spec", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1717242900000, - "name": "52201.spec", - "path": "52201.spec", - "size": 149504, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha1)", - "modifiedAt": 1717242900000, - "name": "52201.swdir", - "path": "52201.swdir", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (alpha2)", - "modifiedAt": 1717242900000, - "name": "52201.swdir2", - "path": "52201.swdir2", - "size": 1468006, - "type": "file", - }, - { - "description": "Spectral Wave Data (r1)", - "modifiedAt": 1717242900000, - "name": "52201.swr1", - "path": "52201.swr1", - "size": 1363149, - "type": "file", - }, - { - "description": "Spectral Wave Data (r2)", - "modifiedAt": 1717242900000, - "name": "52201.swr2", - "path": "52201.swr2", - "size": 1363149, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717242900000, - "name": "52201.txt", - "path": "52201.txt", - "size": 200704, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1717235700000, - "name": "52201.adcp", - "path": "52201.adcp", - "size": 47104, - "type": "file", - }, - { - "description": "Supplemental Measurements Data", - "modifiedAt": 1717186560000, - "name": "42057.supl", - "path": "42057.supl", - "size": 312320, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1717029600000, - "name": "46184.txt", - "path": "46184.txt", - "size": 2458, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1716919500000, - "name": "KVOA.txt", - "path": "KVOA.txt", - "size": 218112, - "type": "file", - }, - { - "description": "Water Column Height (DART) Data", - "modifiedAt": 1716557100000, - "name": "32413.dart", - "path": "32413.dart", - "size": 77824, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1716494700000, - "name": "SIPF1.txt", - "path": "SIPF1.txt", - "size": 347136, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1716416700000, - "name": "WEQM1.ocean", - "path": "WEQM1.ocean", - "size": 567, - "type": "file", - }, - { - "description": "Spectral Wave Summary Data", - "modifiedAt": 1715984100000, - "name": "45028.spec", - "path": "45028.spec", - "size": 65536, - "type": "file", - }, - { - "description": "Standard Meteorological Data", - "modifiedAt": 1715289960000, - "name": "STDM4.txt", - "path": "STDM4.txt", - "size": 30720, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1715283000000, - "name": "44037.adcp", - "path": "44037.adcp", - "size": 2355, - "type": "file", - }, - { - "description": "Acoustic Doppler Current Profiler Data", - "modifiedAt": 1715160000000, - "name": "42023.adcp", - "path": "42023.adcp", - "size": 786432, - "type": "file", - }, - { - "description": "Oceanographic Data", - "modifiedAt": 1715040900000, - "name": "44034.ocean", - "path": "44034.ocean", - "size": 83968, - "type": "file", - }, -] -`; diff --git a/tests/fetchDirectoryListing.test.ts b/tests/fetchDirectoryListing.test.ts index 16331b2..19760b8 100644 --- a/tests/fetchDirectoryListing.test.ts +++ b/tests/fetchDirectoryListing.test.ts @@ -14,7 +14,7 @@ it( description: expect.any(String), modifiedAt: expect.any(Number), name: expect.any(String), - path: expect.any(String), + url: expect.any(String), size: expect.any(Number), type: expect.any(String), }), @@ -31,7 +31,7 @@ it( description: expect.any(String), modifiedAt: expect.any(Number), name: expect.any(String), - path: expect.any(String), + url: expect.any(String), type: expect.any(String), }), ]) diff --git a/tests/parseDirectoryListingHtml.test.ts b/tests/parseDirectoryListingHtml.test.ts index 6b950ec..a654a7e 100644 --- a/tests/parseDirectoryListingHtml.test.ts +++ b/tests/parseDirectoryListingHtml.test.ts @@ -6,6 +6,17 @@ it('works', () => { expect( parseDirectoryListingHtml({ html: example, - }).sort((a, b) => b.modifiedAt - a.modifiedAt) - ).toMatchSnapshot(); + }) + ).toEqual( + expect.arrayContaining([ + expect.objectContaining({ + description: expect.any(String), + modifiedAt: expect.any(Number), + name: expect.any(String), + url: expect.any(String), + size: expect.any(Number), + type: expect.any(String), + }), + ]) + ); }); diff --git a/tests/scrapeDirectoryListing.test.ts b/tests/scrapeDirectoryListing.test.ts index e585d19..9bfc474 100644 --- a/tests/scrapeDirectoryListing.test.ts +++ b/tests/scrapeDirectoryListing.test.ts @@ -1,9 +1,55 @@ import { it, expect } from 'vitest'; +import { mkdirSync, rmdirSync } from 'fs'; +import { resolve } from 'path'; +import { writeFile } from 'fs/promises'; import { scrapeDirectoryListing } from '../src'; it('works', async () => { const res = await scrapeDirectoryListing({ - url: 'https://www.ndbc.noaa.gov/data/drift/', + url: 'https://www.ndbc.noaa.gov/data/ocean', }); expect(res.length).toBeGreaterThan(0); + + try { + rmdirSync(resolve(process.cwd(), 'tests', 'output'), { recursive: true }); + } catch (e) { + // + } + try { + mkdirSync(resolve(process.cwd(), 'tests', 'output'), { recursive: true }); + } catch (e) { + // + } + + // create folder if it doesn't exist given the path + const createFolder = (path: string) => { + const lastSlash = path.lastIndexOf('/'); + const modifiedPath = path.slice(0, lastSlash); + const parts = modifiedPath.split('/'); + let current = ''; + // eslint-disable-next-line no-restricted-syntax + for (const part of parts) { + current += `${part}/`; + try { + mkdirSync(resolve(process.cwd(), 'tests', 'output', current)); + } catch (e) { + // + } + } + }; + + await Promise.all( + res.map((x) => { + let { pathname } = new URL(x.item.url); + // remove the leading slash + if (pathname.startsWith('/')) { + pathname = pathname.slice(1); + } + createFolder(pathname); + return writeFile( + resolve(process.cwd(), 'tests', 'output', pathname), + Buffer.from(x.data) + ); + }) + ); });