Look at the Nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# yarn
yarn install
# npm
npm install
# pnpm
pnpm installStart the development server on http://localhost:3000
npm run devBuild the application for production:
npm run buildLocally preview production build:
npm run previewCheck out the deployment documentation for more information.
- Login to CDS (or Login to ADS)
- Copy a 2 line code, which shows a url and your own uid:API key details like this:
url: https://cds.climate.copernicus.eu/api/v2
key: <api_key>- For CDS users, Go to this page and copy the 2 line code displayed in the black box in the "Install the CDS API key" section.
- Paste the 2 line code into a ".cdsapirc" file, where in your windows environment, %USERPROFILE% is usually located at C:\Users\Username folder). The CDS API expects to find the .cdsapirc file in your home directory.
- For instructions on how to create a dot file on Windows, please see here or check the instructions provided by one of users on the User Forum.
- Install the CDS API client by running the following command in a Command Prompt window:
pip3 install cdsapi # for Python 3
pip3 install flask- Once the CDS API client is installed, it can be used to request data from the datasets listed in the CDS and ADS catalogues. It is necessary to agree to the Terms of Use of every datasets that you intend to download. Attached to each dataset download form, the "Show API request" button displays the python code to be used.