Skip to main content

"atlaslib-ecmwf"

Project description

Atlas

atlas release version build codecov

Project home: https://confluence.ecmwf.int/display/ATLAS
Contact: Willem Deconinck (willem.deconinck@ecmwf.int)
Publication:

Deconinck et al, 2017 --- Atlas: A library for numerical weather prediction and climate modelling

Atlas is a ECMWF library for parallel data-structures supporting unstructured grids and function spaces, with the aim to investigate alternative more scalable dynamical core options for Earth System models, and to support modern interpolation and product generation software

Atlas is predominantly C++ code, with main features available to Fortran codes through a F2003 interface. It requires some flavour of Unix (such as Linux). It is known to run on a number of systems, some of which are directly supported by ECMWF.

Requirements

Tested compilers include:

  • GCC 4.9.1, 5.3.0, 6.3.0, 7.2.0
  • Intel 15.0.2, 16.0.3, 17, 18
  • CCE 8.4.5, 8.5.8, 8.6.2
  • PGI-Fortran 17.7 combined with GNU-C/C++ 6.3
  • PGI 17.7

Known compilers to fail include:

  • PGI-Fortran 17.10, 18.1

Required dependencies:

  • CMake --- For use and installation see http://www.cmake.org/
  • ecbuild --- ECMWF library of CMake macros
  • eckit (with MPI support) --- C++ support library

Recommended dependencies:

  • fckit --- For enabling Fortran interfaces
  • python (only when Fortran bindings are required)

Optional dependencies:

  • gridtools-storage --- For GPU interoperability
  • transi --- For enabling IFS spherical harmonics transforms ( not open-source )
  • CGAL --- For enabling Delaunay triangulation of unstructured grids
  • Eigen3 -- For certain linear algebra operations
  • FFTW -- For enabling inverse spherical harmonics transforms (TransLocal)

Installation

Atlas employs an out-of-source build/install based on CMake.

Make sure ecbuild, eckit and fckit are installed and the ecbuild executable script is found ( which ecbuild ). Following environment variables help the build system to detect the right dependencies:

# For finding eckit
ECKIT_PATH               # Path to eckit prefix

# For finding fckit
FCKIT_PATH               # Path to fckit prefix

Other environment variables that could be required for optional features:

# For finding gridtools-storage
GRIDTOOLS_STORAGE_PATH   # Path to gridtools-storage prefix

# For finding transi
TRANSI_PATH              # Path to transi prefix

# For finding CGAL
BOOST_ROOT               # Path to Boost prefix
CGAL_DIR                 # Path to directory containing CGALConfig.cmake
Eigen3_DIR               # Path to directory containing Eigen3Config.cmake
FFTW_PATH                # Path to FFTW prefix

Now proceed with installation as follows

# Environment --- Edit as needed
ATLAS_SRC=$(pwd)
ATLAS_BUILD=build
ATLAS_INSTALL=$HOME/local

# 1. Create the build directory:
mkdir $ATLAS_BUILD
cd $ATLAS_BUILD

# 2. Run CMake
ecbuild --prefix=$ATLAS_INSTALL -- $ATLAS_SRC

# 3. Compile / Install
make -j10
make install

# 4. Check installation
$ATLAS_INSTALL/bin/atlas --info

Extra flags maybe added to step 2 to fine-tune configuration.

  • --build=DEBUG|RELEASE|BIT --- Optimisation level
    • DEBUG: No optimisation (-O0 -g)
    • BIT: Maximum optimisation while remaning bit-reproducible (-O2 -g)
    • RELEASE: Maximum optimisation (-O3)
  • -DENABLE_OMP=OFF --- Disable OpenMP
  • -DENABLE_FORTRAN=OFF --- Disable Compilation of Fortran bindings

Note: By default compilation is done using shared libraries. Some systems have linking problems with static libraries that have not been compiled with -fPIC. In this case, also compile atlas using static linking, by adding to step 2: --static

Runtime Configuration

Atlas behaviour can be configured through some environment variables with defaults marked in square brackets

  • ATLAS_INFO=<0|[1]> --- Control printing of Atlas standard information
  • ATLAS_DEBUG=<[0]|1> --- Control printing of Atlas debug information
  • ATLAS_TRACE=<[0]|1> --- Control printing of Atlas traces (includes timings)

Contributing

Contributions to Atlas are welcome. In order to do so, please open an issue where a feature request or bug can be discussed. Then issue a pull request with your contribution. Pull requests must be issued against the develop branch.

Citing Atlas

If you publish work which mentions Atlas, or Atlas has been useful in your research, please cite the following paper:

@article{DECONINCK2017188,
title = "Atlas : A library for numerical weather prediction and climate modelling",
journal = "Computer Physics Communications",
volume = "220",
pages = "188 - 204",
year = "2017",
issn = "0010-4655",
doi = "https://doi.org/10.1016/j.cpc.2017.07.006",
url = "http://www.sciencedirect.com/science/article/pii/S0010465517302138",
author = "Willem Deconinck and Peter Bauer and Michail Diamantakis and Mats Hamrud and Christian Kühnlein and Pedro Maciel and Gianmarco Mengaldo and Tiago Quintino and Baudouin Raoult and Piotr K. Smolarkiewicz and Nils P. Wedi",
keywords = "Numerical weather prediction, Climate, Earth system, High performance computing, Meteorology, Flexible mesh data structure"
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-2-cp312-cp312-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-2-cp310-cp310-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.13macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.13macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.12macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.12macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.11macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.11macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.10macOS 13.0+ ARM64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-manylinux_2_28_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-macosx_13_0_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.9macOS 13.0+ x86-64

atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-macosx_13_0_arm64.whl (5.9 MB view details)

Uploaded CPython 3.9macOS 13.0+ ARM64

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12a6ac57061863d27e5e3ce8a577083fffa40f759df0ba2528c508fd15e45d8e
MD5 7c30030965379a5e2fa96584df28a0b9
BLAKE2b-256 5c82db0f3f56e4e45cf1de351ff00d1f81fd526758bc294388a01f6a6f58d839

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 854fe2a1cc280830daf5abf75db231011fb2f6b562f61e40162419a0e617a5c0
MD5 7121c663130b13c1d00b52d1e961e944
BLAKE2b-256 1001c5bb430e4e4a5d2ccf6995e6c3358ee8b03b92361fbec38b341dfad49099

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 eddf1aa5fe5f7d79b4ca05844a4d856cfdb887b6732db9a10239938550410ec5
MD5 5050bc89f68db7c125cb08d0a45b2458
BLAKE2b-256 7e45dba43df14a4304b970c31082bf6e3b6444b15a3d4fed430acc8a348c9665

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d4180702c643d062e6160d9716cc09c0092c9b7cb7da83d01c1a1cf9bce62c4
MD5 cf5bb6071b21e62193dfe56e512ea649
BLAKE2b-256 ae82c0fc18a0b59ed0ef27d6d2ce1579f9859443dcd1e27d703fa6658d54f19d

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 b50a1fea179565b3e37f8d2290cb41c0f34819f88b9f032b5864f8690ff6ea01
MD5 cad90661c158f5d0a108ec2546c79142
BLAKE2b-256 3994e1b875c65fff8afa0170e88e71025490aaf7f186d39f7903b55500dc6ad6

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 70c35b8b4477ad479335d20deaf1fce6949c830cde035e7785d25267900c2203
MD5 5c235ac76cf1c63e1c3406b306ea3c13
BLAKE2b-256 85e1ed774bae67bca28dbf17262096788ac10f8610169d584df0ab22ea2463e7

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 820cf9a0062de6725e82a1d0952d7f7e341673a6e5a057e2bc0283f18d01f03e
MD5 2c21f4b68c25aa58045f0b3d6e7de67e
BLAKE2b-256 243642d439564b191f895b1bbd24deca8bd06195550061a031d2d3c7b83d57df

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 54ea27da321eb6b29094ee6bc4e6559fab4f91a7b429f21e855d509bb4e7f5a4
MD5 05dabb67903a982a6e6ef821934f127d
BLAKE2b-256 4901acb7bb691931fe2ad6ae2b6daa1f9f3fb43c0d67ae115dadefaa15a88751

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 e6e7702673fe0736953f27d54f6a03b1cda6a157b8a42baf9edf2474cc70213a
MD5 b5158bff0cd0ebd1c94d2061f91f0231
BLAKE2b-256 d6dcce546796d9057a312ec0f61fa8515ccefc0c068ab4ddae6d90ca18801444

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b80dbc8ca6fd4b008179b1d0cdacbadf387fd8423268c012a2e9b59d7b558deb
MD5 6a809bbd844a7edc877cd301cd176c89
BLAKE2b-256 bc934a09326c40b7875fa87e10c462af909b1a5fa7250b6170093aa37a9e5fab

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 00c0896ecd1b907a31e457957ecd668d4008cc0b9dbe605ed94026c3cb040790
MD5 48d9412e42a5049fa55a5454891c7a50
BLAKE2b-256 6b7cb8f830c86c399745568bd990f08691c8bf49d80cbad9790c5faa3c659b1b

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8fbb4269de9b5c0d8eb9890893c12937ee5fb16ad26fd9672bb13e4868d75331
MD5 76ab3c0fa92c8c7ffdb29beb05a72436
BLAKE2b-256 4245d9642599448a5984d9ab765ac705d896e2e4b9eaa121060168c6e026b1a0

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e28e85c508cbd12acc56c657da1b4eea854d4df3ea6f254c0a9921834125c631
MD5 02222609280102a5fd954ef77f614fe0
BLAKE2b-256 67e2555950ea477090a1f27d0d3ece7e517781129b2dbe4863442bbedca343e4

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 43e7f06f5ae6daa80249957dfb3ee144af4588b491a60c4757db92c8442ab691
MD5 7174fe281c2fdff95968316ddaf4135f
BLAKE2b-256 4a42e70e716cef65742ff33812f71543e8e1c98e3d46b305b756752bc6ea008a

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dfd99f9d8862b06e2332c5ce14eb9957674d3ffbbabfc7842c5582e4b9526f5b
MD5 bfab3643a34eef5eb047ac31e9ac1b3c
BLAKE2b-256 752df4ef51ddc38cc02ea239fa2a74a7744cd90e1717eb8748d55165aa710694

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89f7fdd18f412bc1a054046bca134c7b883840cb64513abe375249e8d80f2456
MD5 64a0096bfe15ddac281e74fa991d1a37
BLAKE2b-256 a796c393b3aa42a2b32106ecdca5a870726414f31d99c821e6630248d8863c6e

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 374d801dc7d50031e03bdc0d6efde6e6e579b53a974f640361b6603e0ac2fec5
MD5 cbe28840b919dc5b430990ad84211e2f
BLAKE2b-256 ebd818d4cd58f77f63d1c63a7c0a8da240bd0428e1fcce149591e05fdfd7846c

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 baa22f0475b0ad6a2b4d5a670d543ae6c1e16a14b46e6826c7daa1d09cd439b6
MD5 ab1d017db258694bec582456973a0e6e
BLAKE2b-256 cc49724fbcb18c2785b13db0de4f289e83f3b00c4c5ead826488df8e0a1441d8

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 6b88046af4d0f7be1c93d4185eb83caf51c662b970f8bd0f02f45704655a29a2
MD5 9e642738ca93853b88f21290de475772
BLAKE2b-256 d76a9c38582de7de8a9cb0c0581fc94d264db08d15b895bd0a547dcf3cff5070

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 29cb6cc510abef716359bf316823e4cec000ba933d6fca434dcf341884711cd9
MD5 c9c5bc1a3dc5fa71fdfbdc4f82ed1162
BLAKE2b-256 0737367fdbea27eafb55342237cbf5c49dd3fa5da438c1a82d9df82c67221d8c

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 785d2dc8dc94d6ac27a47b87b06a1868903c9d21502386f75b822e7647218af9
MD5 887a55b82f4fc922da805476ed109497
BLAKE2b-256 a353cb0189ce4622e7bc36d4a3689174ec88a33e2278cfe163e19d50a5510965

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 9c7ce1baa444a5095b4f23801b7d65db923ed256e9f65507e532740efae70af5
MD5 b314eada1e23c6fa9f167b685247b351
BLAKE2b-256 e34a471a27cc344cb33b3c3474b4243135807ce79dd6fc5ea6a3cf0242d57edc

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ba5d28a1ef695400fd10e4773ec5977ce3545d7496f619d0bb47eae48d1423de
MD5 482fb29acac2f8cac8631fd87fb2ba09
BLAKE2b-256 101207b794d409053e643a8863d0edc2c1aa4528cef4c92cb9908d62b6ff08e8

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3921e6461504fb175b5e7005adcc06adeeaf18492b0f74ab2d7fc7ce8af2e5a
MD5 0f5434206cb133bd05ad033e52f7f711
BLAKE2b-256 b5101d3b57ff84ecfa84e3867fd243eb6dc5f378ceac92ce4b44d8475a9ed7d0

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 cc2bfc9fc10b13f44ff68069ef94e52003721bda8f74d848c14aade0dbb42619
MD5 55a078ff752f8b01b3f71a412de3f201
BLAKE2b-256 027943dd87f1b0992636647dda3015badbafd00f3d20c5365e4b98c57814c579

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 b2aa1ff65ccb21f4f388b13011148d0f9b9999d0c209383830b7b1d73c1e35f7
MD5 bc3cdaeeabf080de57a01a020526d469
BLAKE2b-256 b3e5cbd2205793bc899d8630ced2dbb3a00b68d7bda56a8b35dc010a1244adaa

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 35fead60edfdcfaaf9ac255afffff26dc5736d7c5a8f8c107ba676193dc49417
MD5 8ac9b7c7a9c4bcbb5ff65d4f241e258b
BLAKE2b-256 c1dfa02493f9697ad070ee5ef7bac892a133dfc998a60ae94790c8b7966ea989

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 5b91ff59df6cb179006862d33d914df0b6ce6a86d78655ea327264b1a33bb836
MD5 f6b8a76aedf07194367091d7d87b26b4
BLAKE2b-256 8538fa45e8dedc9d4957ecc721a6e7b8744a5f5c5322741a43e475e9f07682ad

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 8e74fe87afa0475605cd9cc59d502400a3420a4261136b676b998d2ed22d28fe
MD5 37220997b566c31cc1d906fa59f831f1
BLAKE2b-256 f702c62ff4e4f56d3c421ee151c096b9eaca1ccd159103931970c0d62f011a1f

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b91ae3dcef33383d6a2592f34bff6524928e973b6253ea78ec8e97fddfdb719c
MD5 5b4ac75d55586b8ae749935e80ecc8ec
BLAKE2b-256 412e8db3c64dd77622cb70a742aaa8e9f93b0b362e5a7e80c187d2d02e2bf9ba

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 acbabdde3dd6d5e9d1797ba9766bbeeaec913460f0e2d32a76fdf85474392da3
MD5 4d0cda1cf629ebfeac506d279c5c8c10
BLAKE2b-256 f45550fdb676a0d9b5c4f143a514b8ddefea872bac21d9dcfb081a979fa5c02c

See more details on using hashes here.

File details

Details for the file atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

File hashes

Hashes for atlaslib_ecmwf-0.43.2.dev20250905-1-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 cf4acc6d5f42e99ef7ff91a262242b5145590b3066470a5578938655588c1590
MD5 531a55b0dc28d0d3991a73aad5af7620
BLAKE2b-256 53d2e2c1421ad743ce515ccd08902d8dca173b9cf800dcccd6739e79eb553e91

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page