├── .binder └── environment.yml ├── .github ├── dependabot.yml ├── instructions │ └── codacy.instructions.md └── workflows │ ├── AutoPushToPypi.yml │ ├── ci-py310.yaml │ ├── ci-py311.yaml │ ├── ci-py312.yaml │ ├── docs_dev.yml │ └── pre-commit-ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── codecov.yml ├── docs ├── Makefile ├── build_docs_linux.sh ├── build_docs_windows.ps1 ├── clean_all.ps1 ├── clean_all.sh ├── clean_build.ps1 ├── clean_build.sh ├── copy_ipynb2example.ps1 ├── copy_ipynb2example.sh ├── make.bat ├── optipng-7.9.1-win64.zip ├── requirements.txt └── source │ ├── _autosummary │ └── easyclimate.rst │ ├── _static │ ├── easyclimate-logo.png │ ├── easyclimate-logo.svg │ ├── fig1.jpg │ ├── fig2.jpg │ ├── fig3.jpg │ ├── fig4.jpg │ ├── fig5.jpg │ ├── fig6.jpg │ └── fig7.jpg │ ├── api_index │ └── index.rst │ ├── changes.md │ ├── conf.py │ ├── contributing.rst │ ├── dynamic_docs │ ├── README.rst │ ├── basic │ │ ├── README.rst │ │ ├── plot_basic_statistical_analysis.py │ │ ├── plot_co_coeff.py │ │ ├── plot_geographic_finite_difference.py │ │ ├── plot_multi_linear_reg.py │ │ ├── plot_taylor_diagram.py │ │ └── plot_time_scale_average.py │ ├── eddy │ │ ├── README.rst │ │ ├── plot_egr.py │ │ └── plot_waf.py │ ├── filter │ │ ├── README.rst │ │ ├── mca_analysis_result.zarr │ │ │ ├── EOF │ │ │ │ ├── left_EOF.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── left_EOF │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ ├── metadata.json │ │ │ │ └── right_EOF.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ └── right_EOF │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0.0 │ │ │ ├── PC │ │ │ │ ├── left_PC.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── left_PC │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0 │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── time │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ ├── metadata.json │ │ │ │ └── right_PC.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── right_PC │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0 │ │ │ │ │ └── time │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── correlation_coefficients_X.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── correlation_coefficients_X │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0 │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── mode_x │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode_y │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── correlation_coefficients_Y.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── correlation_coefficients_Y │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0 │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── mode_x │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode_y │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── covariance_fraction.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── covariance_fraction │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── cross_correlation_coefficients.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── cross_correlation_coefficients │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── fraction_variance_X_explained_by_X.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── fraction_variance_X_explained_by_X │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── fraction_variance_Y_explained_by_X.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── fraction_variance_Y_explained_by_X │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── fraction_variance_Y_explained_by_Y.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── fraction_variance_Y_explained_by_Y │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── heterogeneous_patterns │ │ │ │ ├── left_heterogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── left_heterogeneous_patterns │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ ├── metadata.json │ │ │ │ ├── pvalues_of_left_heterogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── pvalues_of_left_heterogeneous_patterns │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ ├── pvalues_of_right_heterogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── pvalues_of_right_heterogeneous_patterns │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ └── right_heterogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ └── right_heterogeneous_patterns │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0.0 │ │ │ ├── homogeneous_patterns │ │ │ │ ├── left_homogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── left_homogeneous_patterns │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ ├── metadata.json │ │ │ │ ├── pvalues_of_left_homogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── pvalues_of_left_homogeneous_patterns │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ ├── pvalues_of_right_homogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── level │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── pvalues_of_right_homogeneous_patterns │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ └── right_homogeneous_patterns.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── lat │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── level │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ └── right_homogeneous_patterns │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0.0 │ │ │ ├── metadata.json │ │ │ └── squared_covariance_fraction.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── level │ │ │ │ ├── 0 │ │ │ │ ├── .zarray │ │ │ │ └── .zattrs │ │ │ │ ├── mode │ │ │ │ ├── 0 │ │ │ │ ├── .zarray │ │ │ │ └── .zattrs │ │ │ │ └── squared_covariance_fraction │ │ │ │ ├── 0 │ │ │ │ ├── .zarray │ │ │ │ └── .zattrs │ │ ├── meof_analysis_result.zarr │ │ │ ├── EOF │ │ │ │ ├── metadata.json │ │ │ │ ├── var0.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── components │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ ├── var1.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── components │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ ├── .zattrs │ │ │ │ │ │ └── 0.0.0 │ │ │ │ │ ├── lat │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ │ └── mode │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── .zarray │ │ │ │ │ │ └── .zattrs │ │ │ │ └── var2.zarr │ │ │ │ │ ├── .zattrs │ │ │ │ │ ├── .zgroup │ │ │ │ │ ├── components │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0.0 │ │ │ │ │ ├── lat │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ ├── lon │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── PC.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── month │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ ├── scores │ │ │ │ │ ├── .zarray │ │ │ │ │ ├── .zattrs │ │ │ │ │ └── 0.0 │ │ │ │ └── time │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── explained_variance.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── explained_variance │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── explained_variance_ratio.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── explained_variance_ratio │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ │ └── mode │ │ │ │ │ ├── 0 │ │ │ │ │ ├── .zarray │ │ │ │ │ └── .zattrs │ │ │ ├── metadata.json │ │ │ └── singular_values.zarr │ │ │ │ ├── .zattrs │ │ │ │ ├── .zgroup │ │ │ │ ├── mode │ │ │ │ ├── 0 │ │ │ │ ├── .zarray │ │ │ │ └── .zattrs │ │ │ │ └── norms │ │ │ │ ├── 0 │ │ │ │ ├── .zarray │ │ │ │ └── .zattrs │ │ ├── nina34.anom.data │ │ ├── plot_barnes_filter.py │ │ ├── plot_basic_eof.py │ │ ├── plot_emd.py │ │ ├── plot_kf_filter.py │ │ ├── plot_multieof.py │ │ ├── plot_redfit.py │ │ ├── plot_smooth_daily_cycle.py │ │ ├── plot_spatial_pcf.py │ │ ├── plot_wavelet.py │ │ └── plot_wk_spectra.py │ ├── interp │ │ ├── README.rst │ │ ├── plot_interp.py │ │ └── plot_interp_mesh2point.py │ ├── ocean │ │ ├── README.rst │ │ ├── plot_ocean_mix_layer.py │ │ ├── plot_ocean_stability.py │ │ ├── plot_oceanic_front.py │ │ └── plot_thermal_layer.py │ ├── oscillation │ │ ├── README.rst │ │ ├── plot_ao_index.py │ │ ├── plot_da_bbo.py │ │ └── plot_mjo_phase.py │ ├── plot_aerobulk.py │ ├── plot_corr_reg.py │ ├── plot_formatting_coordinates.py │ ├── plot_monsoon_npwi.py │ ├── plot_wet_bulk.py │ ├── sample_data_N20.nc │ ├── satellite │ │ ├── README.rst │ │ └── plot_satellite_data_analysis.py │ ├── test_input_oisst_data.nc │ ├── typhoon │ │ ├── README.rst │ │ ├── plot_tc_track_axis.py │ │ └── plot_tcpv.py │ └── wrf │ │ ├── README.rst │ │ ├── plot_wrf_tutorial.py │ │ └── wrfout_d01_2022-05-01_00_00_00.nc4 │ ├── index.rst │ ├── install.rst │ ├── outfile.txt │ ├── overview.rst │ ├── relay │ ├── sponsor.rst │ └── static_docs │ ├── air_sea_interaction.rst │ ├── cite.rst │ ├── land.rst │ ├── monsoon.rst │ ├── ocean.rst │ ├── product_table.rst │ ├── subproducts.rst │ ├── teleconnections.rst │ └── typhoons.rst ├── pyproject.toml ├── readme ├── README.ja_JP.md └── README.zh_CN.md ├── release_requirements.txt ├── scripts ├── build_wheel.ps1 ├── build_wheel.sh ├── check_deprecations.py ├── command_pytest.ps1 ├── command_pytest.sh ├── command_pytest_distributed.ps1 ├── command_pytest_distributed.sh ├── command_pytest_report.ps1 ├── command_pytest_report.sh ├── create_baseline_images.ps1 ├── create_baseline_images.sh ├── delete_pycache.py ├── upload_pypi.ps1 └── upload_pypi.sh ├── setup.py ├── src └── easyclimate │ ├── __init__.py │ ├── accessor │ ├── __init__.py │ ├── plot_accessor.py │ └── top_accessor.py │ ├── backend.py │ ├── core │ ├── __init__.py │ ├── datanode.py │ ├── diff.py │ ├── eddy.py │ ├── eof.py │ ├── extract.py │ ├── mk_test.py │ ├── monthstat.py │ ├── normalized.py │ ├── read.py │ ├── spharm.py │ ├── stat.py │ ├── tutorial.py │ ├── units.py │ ├── utility.py │ ├── variability.py │ ├── windspharm.py │ └── yearstat.py │ ├── field │ ├── __init__.py │ ├── air_sea_interaction │ │ ├── __init__.py │ │ ├── index_amm.py │ │ ├── index_atlantic_nino.py │ │ ├── index_enso.py │ │ ├── index_iobm.py │ │ ├── index_iod.py │ │ └── index_pdo.py │ ├── boundary_layer │ │ ├── __init__.py │ │ └── aerobulk.py │ ├── detection │ │ └── __init__.py │ ├── equatorial_wave │ │ ├── __init__.py │ │ ├── mjo.py │ │ └── wk_spectra.py │ ├── heat_stress │ │ ├── __init__.py │ │ └── humanindexmod_2020.py │ ├── land │ │ └── __init__.py │ ├── monsoon │ │ ├── __init__.py │ │ ├── bsiso.py │ │ └── index_npwi.py │ ├── ocean │ │ ├── __init__.py │ │ ├── mixlayer.py │ │ ├── oceanic_front.py │ │ ├── stability.py │ │ └── thermal.py │ ├── satellite │ │ ├── __init__.py │ │ └── image.py │ ├── teleconnection │ │ ├── __init__.py │ │ ├── index_ao_nam.py │ │ ├── index_bbo.py │ │ ├── index_cgt.py │ │ ├── index_da.py │ │ ├── index_ea.py │ │ ├── index_eu.py │ │ ├── index_nao.py │ │ ├── index_pna.py │ │ ├── index_srp.py │ │ ├── index_wa.py │ │ └── index_wp.py │ └── typhoon │ │ ├── __init__.py │ │ ├── axisymmetric.py │ │ ├── potential_intensity.py │ │ └── track.py │ ├── filter │ ├── __init__.py │ ├── barnes_filter.py │ ├── butter_filter.py │ ├── emd.py │ ├── gaussian_filter.py │ ├── kf_filter.py │ ├── lanczos_filter.py │ ├── redfit.py │ ├── smooth.py │ ├── spatial_pcf.py │ ├── spectrum.py │ └── wavelet.py │ ├── interp │ ├── __init__.py │ ├── barnes.py │ ├── mesh2mesh.py │ ├── mesh2point.py │ ├── modellevel2pressure.py │ ├── pressure2altitude.py │ └── vinth2p.py │ ├── physics │ ├── __init__.py │ ├── condensation │ │ ├── __init__.py │ │ └── lcl.py │ ├── convection │ │ ├── __init__.py │ │ └── stability.py │ ├── dry │ │ └── __init__.py │ ├── energy │ │ ├── __init__.py │ │ ├── angmom_atm.py │ │ ├── enthalpy.py │ │ └── latent_heat_water.py │ ├── geo │ │ ├── __init__.py │ │ ├── coriolis.py │ │ └── linrood_latwgt.py │ ├── moisture │ │ ├── __init__.py │ │ ├── dewpoint.py │ │ ├── lapse_rate.py │ │ ├── mix.py │ │ ├── vapor_pressure.py │ │ └── wet_bulb.py │ ├── pressure │ │ └── __init__.py │ ├── temperature │ │ ├── __init__.py │ │ ├── equivalent_potential_temperature.py │ │ ├── potential_temperature.py │ │ └── virtual_temperature.py │ └── transfer.py │ ├── plot │ ├── __init__.py │ ├── axisticker.py │ ├── bar.py │ ├── curved_quiver_plot.py │ ├── line.py │ ├── modplot.py │ ├── projection.py │ ├── quick_draw.py │ ├── significance_plot.py │ └── taylor_diagram.py │ ├── version.py │ └── wrf │ ├── __init__.py │ └── interface.py ├── test ├── __init__.py ├── baseline_images │ ├── test_bar_plot_with_threshold1.png │ ├── test_bar_plot_with_threshold2.png │ ├── test_bar_plot_with_threshold3.png │ ├── test_calc_Plumb_wave_activity_horizontal_flux.png │ ├── test_calc_TN_wave_activity_horizontal_flux.png │ ├── test_calc_corr_spatial.png │ ├── test_calc_geostrophic_wind_vorticity1.png │ ├── test_calc_geostrophic_wind_vorticity2.png │ ├── test_calc_index_BBO_EOF3_Wu_2007.png │ ├── test_calc_index_CGT_1point_Ding_Wang_2005.png │ ├── test_calc_index_CGT_NH_Ding_Wang_2005.png │ ├── test_calc_index_DA_EOF2_Wu_2006.png │ ├── test_calc_index_PDO_EOF1.png │ ├── test_calc_lead_lag_correlation_coefficients.png │ ├── test_calc_leadlag_corr_spatial.png │ ├── test_calc_shear_stretch_deform1.png │ ├── test_calc_shear_stretch_deform2.png │ ├── test_calc_shear_stretch_deform3.png │ ├── test_calc_spectral_coefficients_1.png │ ├── test_calc_spectral_coefficients_2.png │ ├── test_curved_quiver.png │ ├── test_decompose_symasym.png │ ├── test_draw_Circlemap_PolarStereo1.png │ ├── test_draw_Circlemap_PolarStereo2.png │ ├── test_draw_Circlemap_PolarStereo3.png │ ├── test_draw_TaylorDiagrams_base1.png │ ├── test_draw_TaylorDiagrams_base3.png │ ├── test_draw_TaylorDiagrams_base4.png │ ├── test_draw_TaylorDiagrams_base5.png │ ├── test_draw_TaylorDiagrams_metadata1.png │ ├── test_draw_TaylorDiagrams_metadata2.png │ ├── test_draw_bsiso1_phase_space_basemap.png │ ├── test_draw_bsiso2_phase_space_basemap.png │ ├── test_draw_global_wavelet_spectrum.png │ ├── test_draw_mjo_phase_space_basemap_AND_draw_mjo_phase_space.png │ ├── test_draw_significant_area_contourf1.png │ ├── test_draw_significant_area_scatter1.png │ ├── test_draw_wavelet_transform.png │ ├── test_filter_2D_spatial_parabolic_cylinder_function1.png │ ├── test_filter_2D_spatial_parabolic_cylinder_function2.png │ ├── test_filter_2D_spatial_parabolic_cylinder_function3.png │ ├── test_filter_2D_spatial_parabolic_cylinder_function4.png │ ├── test_get_stretched_rgb_data_base.png │ ├── test_kf_filter_er_wave.png │ ├── test_kf_filter_kelvin_wave.png │ ├── test_kf_filter_lf_wave.png │ ├── test_kf_filter_mjo_wave.png │ ├── test_kf_filter_mrg_wave.png │ ├── test_kf_filter_mt_wave.png │ ├── test_kf_filter_td_wave.png │ ├── test_line_plot_with_threshold1.png │ ├── test_line_plot_with_threshold2.png │ ├── test_line_plot_with_threshold3.png │ ├── test_line_plot_with_threshold4.png │ ├── test_pr_rotated_asymmetric.png │ ├── test_pr_rotated_symmetric.png │ ├── test_quick_draw_rectangular_box1.png │ ├── test_quick_draw_spatial_basemap1.png │ ├── test_quick_draw_spatial_basemap2.png │ ├── test_remove_dominant_signals.png │ ├── test_temp_rotated_asymmetric.png │ ├── test_temp_rotated_symmetric.png │ └── test_wrf_interface.png ├── const_data.py ├── const_define.py ├── create_test_file │ └── data_create_test_core_windspharm.py ├── data │ ├── test_input_asm_area_olr_uv.nc │ ├── test_input_core_eof.nc │ ├── test_input_core_mca.nc │ ├── test_input_core_read1.nc │ ├── test_input_core_read2.nc │ ├── test_input_field_lanczos_bandpass.nc │ ├── test_input_field_ocean_mixlayer_mld.nc │ ├── test_input_field_ocean_mixlayer_net_heating.nc │ ├── test_input_field_ocean_mixlayer_slt.nc │ ├── test_input_field_ocean_mixlayer_temper.nc │ ├── test_input_field_ocean_mixlayer_u.nc │ ├── test_input_field_ocean_mixlayer_v.nc │ ├── test_input_field_ocean_mixlayer_wt.nc │ ├── test_input_interp_mesh2mesh.nc │ ├── test_input_nino34.nc │ ├── test_input_plot_pvalue.nc │ ├── test_input_sst_mnmean_oisst_barnes_filter.nc │ ├── test_input_sst_mnmean_oisst_oceanic_front.nc │ ├── test_input_uwnd_202201_mon_mean_500hPa_sampledata.nc │ ├── test_input_v200_mon.nc │ ├── test_input_vwnd_202201_mon_mean_500hPa_sampledata.nc │ ├── test_input_z200_mon.nc │ ├── test_input_z500_mon.nc │ ├── test_output_calc_absolute_vorticity.nc │ ├── test_output_calc_gradient.nc │ ├── test_output_calc_helmholtz.nc │ ├── test_output_calc_irrotational_component.nc │ ├── test_output_calc_nondivergent_component.nc │ ├── test_output_calc_planetary_vorticity.nc │ ├── test_output_calc_relative_vorticity_and_horizontal_divergence.nc │ ├── test_output_calc_rossby_wave_source.nc │ ├── test_output_calc_streamfunction_and_velocity_potential.nc │ ├── test_output_calc_wind_speed.nc │ ├── test_output_interp_mesh2mesh.nc │ ├── test_output_waveletpytest1.nc │ ├── test_output_waveletpytest2.nc │ └── test_output_waveletpytest3.nc ├── test_core_datanode.py ├── test_core_diff.py ├── test_core_eddy.py ├── test_core_eof.py ├── test_core_extract.py ├── test_core_mk__test.py ├── test_core_monthstat.py ├── test_core_normalized.py ├── test_core_read.py ├── test_core_spharm.py ├── test_core_stat.py ├── test_core_stat_calc_lead_lag_correlation_coefficients.py ├── test_core_stat_calc_timeseries_correlations.py ├── test_core_stat_corr_spatial.py ├── test_core_stat_multiple_linear_reg.py ├── test_core_units.py ├── test_core_utility.py ├── test_core_utility1.py ├── test_core_utility2.py ├── test_core_variability.py ├── test_core_variability1.py ├── test_core_windspharm.py ├── test_core_yearstat.py ├── test_field_air_sea_interaction_index_amm.py ├── test_field_air_sea_interaction_index_atlantic_nino.py ├── test_field_air_sea_interaction_index_enso.py ├── test_field_air_sea_interaction_index_iobm.py ├── test_field_air_sea_interaction_index_iod.py ├── test_field_air_sea_interaction_index_pdo.py ├── test_field_boundary_layer_aerobulk.py ├── test_field_equatorial_wave_wk_spectra.py ├── test_field_heat_stress_humanindexmod.py ├── test_field_monsoon_bsiso.py ├── test_field_monsoon_index__npwi.py ├── test_field_ocean_mixlayer.py ├── test_field_ocean_oceanic_front.py ├── test_field_ocean_stability.py ├── test_field_ocean_thermal.py ├── test_field_satellite_image.py ├── test_field_teleconnection_index_ao_nam.py ├── test_field_teleconnection_index_cgt.py ├── test_field_teleconnection_index_da_bbo.py ├── test_field_teleconnection_index_ea.py ├── test_field_teleconnection_index_eu.py ├── test_field_teleconnection_index_nao.py ├── test_field_teleconnection_index_pna.py ├── test_field_teleconnection_index_srp.py ├── test_field_teleconnection_index_wa.py ├── test_field_teleconnection_index_wp.py ├── test_field_typhoon_potential_intensity.py ├── test_field_typhoon_track_axisymmetric.py ├── test_filed_equatorial_wave_mjo.py ├── test_filter_barnes_filter.py ├── test_filter_butter_filter.py ├── test_filter_emd.py ├── test_filter_gaussian_filter.py ├── test_filter_kf_filter.py ├── test_filter_lanczos_filter.py ├── test_filter_redfitpy.py ├── test_filter_smooth.py ├── test_filter_spatial_pcf.py ├── test_filter_spectrum.py ├── test_filter_wavelet.py ├── test_interp_barnes.py ├── test_interp_mesh2mesh.py ├── test_interp_mesh2point.py ├── test_interp_modellevel2pressure.py ├── test_interp_pressure2altitude.py ├── test_interp_vinth2p.py ├── test_interp_vinth2p1.py ├── test_physics_condensation_lcl.py ├── test_physics_convection_stability.py ├── test_physics_dry.py ├── test_physics_energy_angmom_atm.py ├── test_physics_energy_enthalpy.py ├── test_physics_energy_latent_heat_water.py ├── test_physics_enthalpy.py ├── test_physics_geo_coriolis.py ├── test_physics_geo_linrood_latwgt.py ├── test_physics_moisture_dewpoint.py ├── test_physics_moisture_lapse_rate.py ├── test_physics_moisture_mix.py ├── test_physics_moisture_vapor_pressure.py ├── test_physics_moisture_wet_bulb.py ├── test_physics_temperature_equivalent_potential_temperature.py ├── test_physics_temperature_potential_temperature.py ├── test_physics_temperature_virtual_temperature.py ├── test_physics_transfer.py ├── test_plot_axisticker.py ├── test_plot_bar.py ├── test_plot_curved_quiver.py ├── test_plot_line.py ├── test_plot_projection.py ├── test_plot_quick_draw.py ├── test_plot_significance__plot.py ├── test_plot_taylor__diagram.py ├── test_version.py ├── test_wrf_interface.py └── util.py └── test_requirements.txt /.binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.binder/environment.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/instructions/codacy.instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/instructions/codacy.instructions.md -------------------------------------------------------------------------------- /.github/workflows/AutoPushToPypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/workflows/AutoPushToPypi.yml -------------------------------------------------------------------------------- /.github/workflows/ci-py310.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/workflows/ci-py310.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-py311.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/workflows/ci-py311.yaml -------------------------------------------------------------------------------- /.github/workflows/ci-py312.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/workflows/ci-py312.yaml -------------------------------------------------------------------------------- /.github/workflows/docs_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/workflows/docs_dev.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.github/workflows/pre-commit-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/build_docs_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/build_docs_linux.sh -------------------------------------------------------------------------------- /docs/build_docs_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/build_docs_windows.ps1 -------------------------------------------------------------------------------- /docs/clean_all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/clean_all.ps1 -------------------------------------------------------------------------------- /docs/clean_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/clean_all.sh -------------------------------------------------------------------------------- /docs/clean_build.ps1: -------------------------------------------------------------------------------- 1 | Remove-Item -Path ".\build" -Recurse 2 | -------------------------------------------------------------------------------- /docs/clean_build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | rm -r ".\build" 3 | -------------------------------------------------------------------------------- /docs/copy_ipynb2example.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/copy_ipynb2example.ps1 -------------------------------------------------------------------------------- /docs/copy_ipynb2example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/copy_ipynb2example.sh -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/optipng-7.9.1-win64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/optipng-7.9.1-win64.zip -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/_autosummary/easyclimate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_autosummary/easyclimate.rst -------------------------------------------------------------------------------- /docs/source/_static/easyclimate-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/easyclimate-logo.png -------------------------------------------------------------------------------- /docs/source/_static/easyclimate-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/easyclimate-logo.svg -------------------------------------------------------------------------------- /docs/source/_static/fig1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/fig1.jpg -------------------------------------------------------------------------------- /docs/source/_static/fig2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/fig2.jpg -------------------------------------------------------------------------------- /docs/source/_static/fig3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/fig3.jpg -------------------------------------------------------------------------------- /docs/source/_static/fig4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/fig4.jpg -------------------------------------------------------------------------------- /docs/source/_static/fig5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/fig5.jpg -------------------------------------------------------------------------------- /docs/source/_static/fig6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/fig6.jpg -------------------------------------------------------------------------------- /docs/source/_static/fig7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/_static/fig7.jpg -------------------------------------------------------------------------------- /docs/source/api_index/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/api_index/index.rst -------------------------------------------------------------------------------- /docs/source/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/changes.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/contributing.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/basic/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/basic/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/basic/plot_basic_statistical_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/basic/plot_basic_statistical_analysis.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/basic/plot_co_coeff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/basic/plot_co_coeff.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/basic/plot_geographic_finite_difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/basic/plot_geographic_finite_difference.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/basic/plot_multi_linear_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/basic/plot_multi_linear_reg.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/basic/plot_taylor_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/basic/plot_taylor_diagram.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/basic/plot_time_scale_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/basic/plot_time_scale_average.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/eddy/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/eddy/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/eddy/plot_egr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/eddy/plot_egr.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/eddy/plot_waf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/eddy/plot_waf.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lat/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lat/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/left_EOF/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/left_EOF/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/left_EOF/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/left_EOF/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/left_EOF/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/left_EOF/0.0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lon/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lon/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/left_EOF.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/metadata.json -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lat/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lat/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lon/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lon/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/right_EOF/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/right_EOF/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/right_EOF/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/right_EOF/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/right_EOF/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/EOF/right_EOF.zarr/right_EOF/0.0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/left_PC/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/left_PC/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/left_PC/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/left_PC/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/left_PC/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/left_PC/0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/time/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/time/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/left_PC.zarr/time/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/metadata.json -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/right_PC/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/right_PC/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/right_PC/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/right_PC/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/right_PC/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/right_PC/0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/time/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/time/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/PC/right_PC.zarr/time/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/correlation_coefficients_X/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/correlation_coefficients_X/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/correlation_coefficients_X/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/correlation_coefficients_X/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/correlation_coefficients_X/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/correlation_coefficients_X/0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_x/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_x/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_x/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_x/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_x/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_x/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_y/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_y/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_y/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_y/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_y/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_X.zarr/mode_y/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/correlation_coefficients_Y/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/correlation_coefficients_Y/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/correlation_coefficients_Y/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/correlation_coefficients_Y/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/correlation_coefficients_Y/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/correlation_coefficients_Y/0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_x/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_x/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_x/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_x/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_x/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_x/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_y/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_y/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_y/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_y/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_y/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/correlation_coefficients_Y.zarr/mode_y/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/covariance_fraction/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/covariance_fraction/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/covariance_fraction/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/covariance_fraction/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/covariance_fraction/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/covariance_fraction/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/covariance_fraction.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/cross_correlation_coefficients.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_X_explained_by_X.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_X.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/fraction_variance_Y_explained_by_Y.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/left_heterogeneous_patterns.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/metadata.json -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/pvalues_of_left_heterogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/pvalues_of_left_heterogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/pvalues_of_right_heterogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/pvalues_of_right_heterogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/heterogeneous_patterns/right_heterogeneous_patterns.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lat/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lat/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lon/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lon/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/left_homogeneous_patterns.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/metadata.json -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/pvalues_of_left_homogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/pvalues_of_left_homogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/pvalues_of_right_homogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/pvalues_of_right_homogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lat/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lat/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/level/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/level/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lon/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lon/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/homogeneous_patterns/right_homogeneous_patterns.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/metadata.json -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/level/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/level/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/level/.zattrs: -------------------------------------------------------------------------------- 1 | { 2 | "_ARRAY_DIMENSIONS": [] 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/level/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/level/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/squared_covariance_fraction/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/mca_analysis_result.zarr/squared_covariance_fraction.zarr/squared_covariance_fraction/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/metadata.json -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/components/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/components/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/components/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/components/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/components/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/components/0.0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lat/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lat/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lon/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lon/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var0.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/components/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/components/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/components/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/components/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/components/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/components/0.0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lat/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lat/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lon/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lon/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var1.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/components/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/components/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/components/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/components/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/components/0.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/components/0.0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lat/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lat/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lat/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lat/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lat/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lat/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lon/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lon/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lon/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lon/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lon/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/lon/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/EOF/var2.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/month/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/month/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/month/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/month/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/month/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/month/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/scores/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/scores/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/scores/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/scores/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/scores/0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/scores/0.0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/time/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/time/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/time/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/time/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/time/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/PC.zarr/time/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/explained_variance/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/explained_variance/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/explained_variance/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/explained_variance/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/explained_variance/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/explained_variance/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/explained_variance_ratio/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/explained_variance_ratio/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/explained_variance_ratio/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/explained_variance_ratio/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/explained_variance_ratio/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/explained_variance_ratio/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/explained_variance_ratio.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/metadata.json -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/.zattrs: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/.zgroup: -------------------------------------------------------------------------------- 1 | { 2 | "zarr_format": 2 3 | } 4 | -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/mode/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/mode/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/mode/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/mode/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/mode/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/mode/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/norms/.zarray: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/norms/.zarray -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/norms/.zattrs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/norms/.zattrs -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/norms/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/meof_analysis_result.zarr/singular_values.zarr/norms/0 -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/nina34.anom.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/nina34.anom.data -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_barnes_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_barnes_filter.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_basic_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_basic_eof.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_emd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_emd.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_kf_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_kf_filter.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_multieof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_multieof.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_redfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_redfit.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_smooth_daily_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_smooth_daily_cycle.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_spatial_pcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_spatial_pcf.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_wavelet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_wavelet.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/filter/plot_wk_spectra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/filter/plot_wk_spectra.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/interp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/interp/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/interp/plot_interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/interp/plot_interp.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/interp/plot_interp_mesh2point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/interp/plot_interp_mesh2point.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/ocean/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/ocean/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/ocean/plot_ocean_mix_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/ocean/plot_ocean_mix_layer.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/ocean/plot_ocean_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/ocean/plot_ocean_stability.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/ocean/plot_oceanic_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/ocean/plot_oceanic_front.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/ocean/plot_thermal_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/ocean/plot_thermal_layer.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/oscillation/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/oscillation/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/oscillation/plot_ao_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/oscillation/plot_ao_index.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/oscillation/plot_da_bbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/oscillation/plot_da_bbo.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/oscillation/plot_mjo_phase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/oscillation/plot_mjo_phase.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/plot_aerobulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/plot_aerobulk.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/plot_corr_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/plot_corr_reg.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/plot_formatting_coordinates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/plot_formatting_coordinates.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/plot_monsoon_npwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/plot_monsoon_npwi.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/plot_wet_bulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/plot_wet_bulk.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/sample_data_N20.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/sample_data_N20.nc -------------------------------------------------------------------------------- /docs/source/dynamic_docs/satellite/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/satellite/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/satellite/plot_satellite_data_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/satellite/plot_satellite_data_analysis.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/test_input_oisst_data.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/test_input_oisst_data.nc -------------------------------------------------------------------------------- /docs/source/dynamic_docs/typhoon/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/typhoon/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/typhoon/plot_tc_track_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/typhoon/plot_tc_track_axis.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/typhoon/plot_tcpv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/typhoon/plot_tcpv.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/wrf/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/wrf/README.rst -------------------------------------------------------------------------------- /docs/source/dynamic_docs/wrf/plot_wrf_tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/wrf/plot_wrf_tutorial.py -------------------------------------------------------------------------------- /docs/source/dynamic_docs/wrf/wrfout_d01_2022-05-01_00_00_00.nc4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/dynamic_docs/wrf/wrfout_d01_2022-05-01_00_00_00.nc4 -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/outfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/outfile.txt -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /docs/source/relay: -------------------------------------------------------------------------------- 1 | conda create --name=='sbook' python=3.10 2 | -------------------------------------------------------------------------------- /docs/source/sponsor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/sponsor.rst -------------------------------------------------------------------------------- /docs/source/static_docs/air_sea_interaction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/air_sea_interaction.rst -------------------------------------------------------------------------------- /docs/source/static_docs/cite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/cite.rst -------------------------------------------------------------------------------- /docs/source/static_docs/land.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/land.rst -------------------------------------------------------------------------------- /docs/source/static_docs/monsoon.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/monsoon.rst -------------------------------------------------------------------------------- /docs/source/static_docs/ocean.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/ocean.rst -------------------------------------------------------------------------------- /docs/source/static_docs/product_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/product_table.rst -------------------------------------------------------------------------------- /docs/source/static_docs/subproducts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/subproducts.rst -------------------------------------------------------------------------------- /docs/source/static_docs/teleconnections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/teleconnections.rst -------------------------------------------------------------------------------- /docs/source/static_docs/typhoons.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/docs/source/static_docs/typhoons.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme/README.ja_JP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/readme/README.ja_JP.md -------------------------------------------------------------------------------- /readme/README.zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/readme/README.zh_CN.md -------------------------------------------------------------------------------- /release_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/release_requirements.txt -------------------------------------------------------------------------------- /scripts/build_wheel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/build_wheel.ps1 -------------------------------------------------------------------------------- /scripts/build_wheel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/build_wheel.sh -------------------------------------------------------------------------------- /scripts/check_deprecations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/check_deprecations.py -------------------------------------------------------------------------------- /scripts/command_pytest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/command_pytest.ps1 -------------------------------------------------------------------------------- /scripts/command_pytest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/command_pytest.sh -------------------------------------------------------------------------------- /scripts/command_pytest_distributed.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/command_pytest_distributed.ps1 -------------------------------------------------------------------------------- /scripts/command_pytest_distributed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/command_pytest_distributed.sh -------------------------------------------------------------------------------- /scripts/command_pytest_report.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/command_pytest_report.ps1 -------------------------------------------------------------------------------- /scripts/command_pytest_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/command_pytest_report.sh -------------------------------------------------------------------------------- /scripts/create_baseline_images.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/create_baseline_images.ps1 -------------------------------------------------------------------------------- /scripts/create_baseline_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/create_baseline_images.sh -------------------------------------------------------------------------------- /scripts/delete_pycache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/delete_pycache.py -------------------------------------------------------------------------------- /scripts/upload_pypi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/upload_pypi.ps1 -------------------------------------------------------------------------------- /scripts/upload_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/scripts/upload_pypi.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/setup.py -------------------------------------------------------------------------------- /src/easyclimate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/accessor/__init__.py: -------------------------------------------------------------------------------- 1 | from . import top_accessor 2 | -------------------------------------------------------------------------------- /src/easyclimate/accessor/plot_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/accessor/plot_accessor.py -------------------------------------------------------------------------------- /src/easyclimate/accessor/top_accessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/accessor/top_accessor.py -------------------------------------------------------------------------------- /src/easyclimate/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/backend.py -------------------------------------------------------------------------------- /src/easyclimate/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/core/datanode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/datanode.py -------------------------------------------------------------------------------- /src/easyclimate/core/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/diff.py -------------------------------------------------------------------------------- /src/easyclimate/core/eddy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/eddy.py -------------------------------------------------------------------------------- /src/easyclimate/core/eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/eof.py -------------------------------------------------------------------------------- /src/easyclimate/core/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/extract.py -------------------------------------------------------------------------------- /src/easyclimate/core/mk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/mk_test.py -------------------------------------------------------------------------------- /src/easyclimate/core/monthstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/monthstat.py -------------------------------------------------------------------------------- /src/easyclimate/core/normalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/normalized.py -------------------------------------------------------------------------------- /src/easyclimate/core/read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/read.py -------------------------------------------------------------------------------- /src/easyclimate/core/spharm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/spharm.py -------------------------------------------------------------------------------- /src/easyclimate/core/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/stat.py -------------------------------------------------------------------------------- /src/easyclimate/core/tutorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/tutorial.py -------------------------------------------------------------------------------- /src/easyclimate/core/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/units.py -------------------------------------------------------------------------------- /src/easyclimate/core/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/utility.py -------------------------------------------------------------------------------- /src/easyclimate/core/variability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/variability.py -------------------------------------------------------------------------------- /src/easyclimate/core/windspharm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/windspharm.py -------------------------------------------------------------------------------- /src/easyclimate/core/yearstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/core/yearstat.py -------------------------------------------------------------------------------- /src/easyclimate/field/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/field/air_sea_interaction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/air_sea_interaction/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/field/air_sea_interaction/index_amm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/air_sea_interaction/index_amm.py -------------------------------------------------------------------------------- /src/easyclimate/field/air_sea_interaction/index_atlantic_nino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/air_sea_interaction/index_atlantic_nino.py -------------------------------------------------------------------------------- /src/easyclimate/field/air_sea_interaction/index_enso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/air_sea_interaction/index_enso.py -------------------------------------------------------------------------------- /src/easyclimate/field/air_sea_interaction/index_iobm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/air_sea_interaction/index_iobm.py -------------------------------------------------------------------------------- /src/easyclimate/field/air_sea_interaction/index_iod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/air_sea_interaction/index_iod.py -------------------------------------------------------------------------------- /src/easyclimate/field/air_sea_interaction/index_pdo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/air_sea_interaction/index_pdo.py -------------------------------------------------------------------------------- /src/easyclimate/field/boundary_layer/__init__.py: -------------------------------------------------------------------------------- 1 | from .aerobulk import * 2 | -------------------------------------------------------------------------------- /src/easyclimate/field/boundary_layer/aerobulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/boundary_layer/aerobulk.py -------------------------------------------------------------------------------- /src/easyclimate/field/detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/easyclimate/field/equatorial_wave/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/equatorial_wave/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/field/equatorial_wave/mjo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/equatorial_wave/mjo.py -------------------------------------------------------------------------------- /src/easyclimate/field/equatorial_wave/wk_spectra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/equatorial_wave/wk_spectra.py -------------------------------------------------------------------------------- /src/easyclimate/field/heat_stress/__init__.py: -------------------------------------------------------------------------------- 1 | from .humanindexmod_2020 import * 2 | -------------------------------------------------------------------------------- /src/easyclimate/field/heat_stress/humanindexmod_2020.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/heat_stress/humanindexmod_2020.py -------------------------------------------------------------------------------- /src/easyclimate/field/land/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/easyclimate/field/monsoon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/monsoon/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/field/monsoon/bsiso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/monsoon/bsiso.py -------------------------------------------------------------------------------- /src/easyclimate/field/monsoon/index_npwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/monsoon/index_npwi.py -------------------------------------------------------------------------------- /src/easyclimate/field/ocean/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/ocean/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/field/ocean/mixlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/ocean/mixlayer.py -------------------------------------------------------------------------------- /src/easyclimate/field/ocean/oceanic_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/ocean/oceanic_front.py -------------------------------------------------------------------------------- /src/easyclimate/field/ocean/stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/ocean/stability.py -------------------------------------------------------------------------------- /src/easyclimate/field/ocean/thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/ocean/thermal.py -------------------------------------------------------------------------------- /src/easyclimate/field/satellite/__init__.py: -------------------------------------------------------------------------------- 1 | from .image import * 2 | -------------------------------------------------------------------------------- /src/easyclimate/field/satellite/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/satellite/image.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_ao_nam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_ao_nam.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_bbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_bbo.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_cgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_cgt.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_da.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_da.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_ea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_ea.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_eu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_eu.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_nao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_nao.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_pna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_pna.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_srp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_srp.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_wa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_wa.py -------------------------------------------------------------------------------- /src/easyclimate/field/teleconnection/index_wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/teleconnection/index_wp.py -------------------------------------------------------------------------------- /src/easyclimate/field/typhoon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/typhoon/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/field/typhoon/axisymmetric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/typhoon/axisymmetric.py -------------------------------------------------------------------------------- /src/easyclimate/field/typhoon/potential_intensity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/typhoon/potential_intensity.py -------------------------------------------------------------------------------- /src/easyclimate/field/typhoon/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/field/typhoon/track.py -------------------------------------------------------------------------------- /src/easyclimate/filter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/filter/barnes_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/barnes_filter.py -------------------------------------------------------------------------------- /src/easyclimate/filter/butter_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/butter_filter.py -------------------------------------------------------------------------------- /src/easyclimate/filter/emd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/emd.py -------------------------------------------------------------------------------- /src/easyclimate/filter/gaussian_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/gaussian_filter.py -------------------------------------------------------------------------------- /src/easyclimate/filter/kf_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/kf_filter.py -------------------------------------------------------------------------------- /src/easyclimate/filter/lanczos_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/lanczos_filter.py -------------------------------------------------------------------------------- /src/easyclimate/filter/redfit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/redfit.py -------------------------------------------------------------------------------- /src/easyclimate/filter/smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/smooth.py -------------------------------------------------------------------------------- /src/easyclimate/filter/spatial_pcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/spatial_pcf.py -------------------------------------------------------------------------------- /src/easyclimate/filter/spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/spectrum.py -------------------------------------------------------------------------------- /src/easyclimate/filter/wavelet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/filter/wavelet.py -------------------------------------------------------------------------------- /src/easyclimate/interp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/interp/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/interp/barnes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/interp/barnes.py -------------------------------------------------------------------------------- /src/easyclimate/interp/mesh2mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/interp/mesh2mesh.py -------------------------------------------------------------------------------- /src/easyclimate/interp/mesh2point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/interp/mesh2point.py -------------------------------------------------------------------------------- /src/easyclimate/interp/modellevel2pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/interp/modellevel2pressure.py -------------------------------------------------------------------------------- /src/easyclimate/interp/pressure2altitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/interp/pressure2altitude.py -------------------------------------------------------------------------------- /src/easyclimate/interp/vinth2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/interp/vinth2p.py -------------------------------------------------------------------------------- /src/easyclimate/physics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/physics/condensation/__init__.py: -------------------------------------------------------------------------------- 1 | from .lcl import * 2 | -------------------------------------------------------------------------------- /src/easyclimate/physics/condensation/lcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/condensation/lcl.py -------------------------------------------------------------------------------- /src/easyclimate/physics/convection/__init__.py: -------------------------------------------------------------------------------- 1 | from .stability import * 2 | -------------------------------------------------------------------------------- /src/easyclimate/physics/convection/stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/convection/stability.py -------------------------------------------------------------------------------- /src/easyclimate/physics/dry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/easyclimate/physics/energy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/energy/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/physics/energy/angmom_atm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/energy/angmom_atm.py -------------------------------------------------------------------------------- /src/easyclimate/physics/energy/enthalpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/energy/enthalpy.py -------------------------------------------------------------------------------- /src/easyclimate/physics/energy/latent_heat_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/energy/latent_heat_water.py -------------------------------------------------------------------------------- /src/easyclimate/physics/geo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/geo/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/physics/geo/coriolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/geo/coriolis.py -------------------------------------------------------------------------------- /src/easyclimate/physics/geo/linrood_latwgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/geo/linrood_latwgt.py -------------------------------------------------------------------------------- /src/easyclimate/physics/moisture/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/moisture/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/physics/moisture/dewpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/moisture/dewpoint.py -------------------------------------------------------------------------------- /src/easyclimate/physics/moisture/lapse_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/moisture/lapse_rate.py -------------------------------------------------------------------------------- /src/easyclimate/physics/moisture/mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/moisture/mix.py -------------------------------------------------------------------------------- /src/easyclimate/physics/moisture/vapor_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/moisture/vapor_pressure.py -------------------------------------------------------------------------------- /src/easyclimate/physics/moisture/wet_bulb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/moisture/wet_bulb.py -------------------------------------------------------------------------------- /src/easyclimate/physics/pressure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/easyclimate/physics/temperature/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/temperature/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/physics/temperature/equivalent_potential_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/temperature/equivalent_potential_temperature.py -------------------------------------------------------------------------------- /src/easyclimate/physics/temperature/potential_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/temperature/potential_temperature.py -------------------------------------------------------------------------------- /src/easyclimate/physics/temperature/virtual_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/temperature/virtual_temperature.py -------------------------------------------------------------------------------- /src/easyclimate/physics/transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/physics/transfer.py -------------------------------------------------------------------------------- /src/easyclimate/plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/plot/axisticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/axisticker.py -------------------------------------------------------------------------------- /src/easyclimate/plot/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/bar.py -------------------------------------------------------------------------------- /src/easyclimate/plot/curved_quiver_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/curved_quiver_plot.py -------------------------------------------------------------------------------- /src/easyclimate/plot/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/line.py -------------------------------------------------------------------------------- /src/easyclimate/plot/modplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/modplot.py -------------------------------------------------------------------------------- /src/easyclimate/plot/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/projection.py -------------------------------------------------------------------------------- /src/easyclimate/plot/quick_draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/quick_draw.py -------------------------------------------------------------------------------- /src/easyclimate/plot/significance_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/significance_plot.py -------------------------------------------------------------------------------- /src/easyclimate/plot/taylor_diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/plot/taylor_diagram.py -------------------------------------------------------------------------------- /src/easyclimate/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/version.py -------------------------------------------------------------------------------- /src/easyclimate/wrf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/wrf/__init__.py -------------------------------------------------------------------------------- /src/easyclimate/wrf/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/src/easyclimate/wrf/interface.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | sys.path.append("../src") 4 | -------------------------------------------------------------------------------- /test/baseline_images/test_bar_plot_with_threshold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_bar_plot_with_threshold1.png -------------------------------------------------------------------------------- /test/baseline_images/test_bar_plot_with_threshold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_bar_plot_with_threshold2.png -------------------------------------------------------------------------------- /test/baseline_images/test_bar_plot_with_threshold3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_bar_plot_with_threshold3.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_Plumb_wave_activity_horizontal_flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_Plumb_wave_activity_horizontal_flux.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_TN_wave_activity_horizontal_flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_TN_wave_activity_horizontal_flux.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_corr_spatial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_corr_spatial.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_geostrophic_wind_vorticity1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_geostrophic_wind_vorticity1.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_geostrophic_wind_vorticity2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_geostrophic_wind_vorticity2.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_index_BBO_EOF3_Wu_2007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_index_BBO_EOF3_Wu_2007.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_index_CGT_1point_Ding_Wang_2005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_index_CGT_1point_Ding_Wang_2005.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_index_CGT_NH_Ding_Wang_2005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_index_CGT_NH_Ding_Wang_2005.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_index_DA_EOF2_Wu_2006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_index_DA_EOF2_Wu_2006.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_index_PDO_EOF1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_index_PDO_EOF1.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_lead_lag_correlation_coefficients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_lead_lag_correlation_coefficients.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_leadlag_corr_spatial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_leadlag_corr_spatial.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_shear_stretch_deform1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_shear_stretch_deform1.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_shear_stretch_deform2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_shear_stretch_deform2.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_shear_stretch_deform3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_shear_stretch_deform3.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_spectral_coefficients_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_spectral_coefficients_1.png -------------------------------------------------------------------------------- /test/baseline_images/test_calc_spectral_coefficients_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_calc_spectral_coefficients_2.png -------------------------------------------------------------------------------- /test/baseline_images/test_curved_quiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_curved_quiver.png -------------------------------------------------------------------------------- /test/baseline_images/test_decompose_symasym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_decompose_symasym.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_Circlemap_PolarStereo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_Circlemap_PolarStereo1.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_Circlemap_PolarStereo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_Circlemap_PolarStereo2.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_Circlemap_PolarStereo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_Circlemap_PolarStereo3.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_TaylorDiagrams_base1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_TaylorDiagrams_base1.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_TaylorDiagrams_base3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_TaylorDiagrams_base3.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_TaylorDiagrams_base4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_TaylorDiagrams_base4.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_TaylorDiagrams_base5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_TaylorDiagrams_base5.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_TaylorDiagrams_metadata1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_TaylorDiagrams_metadata1.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_TaylorDiagrams_metadata2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_TaylorDiagrams_metadata2.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_bsiso1_phase_space_basemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_bsiso1_phase_space_basemap.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_bsiso2_phase_space_basemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_bsiso2_phase_space_basemap.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_global_wavelet_spectrum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_global_wavelet_spectrum.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_mjo_phase_space_basemap_AND_draw_mjo_phase_space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_mjo_phase_space_basemap_AND_draw_mjo_phase_space.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_significant_area_contourf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_significant_area_contourf1.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_significant_area_scatter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_significant_area_scatter1.png -------------------------------------------------------------------------------- /test/baseline_images/test_draw_wavelet_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_draw_wavelet_transform.png -------------------------------------------------------------------------------- /test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function1.png -------------------------------------------------------------------------------- /test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function2.png -------------------------------------------------------------------------------- /test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function3.png -------------------------------------------------------------------------------- /test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_filter_2D_spatial_parabolic_cylinder_function4.png -------------------------------------------------------------------------------- /test/baseline_images/test_get_stretched_rgb_data_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_get_stretched_rgb_data_base.png -------------------------------------------------------------------------------- /test/baseline_images/test_kf_filter_er_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_kf_filter_er_wave.png -------------------------------------------------------------------------------- /test/baseline_images/test_kf_filter_kelvin_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_kf_filter_kelvin_wave.png -------------------------------------------------------------------------------- /test/baseline_images/test_kf_filter_lf_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_kf_filter_lf_wave.png -------------------------------------------------------------------------------- /test/baseline_images/test_kf_filter_mjo_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_kf_filter_mjo_wave.png -------------------------------------------------------------------------------- /test/baseline_images/test_kf_filter_mrg_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_kf_filter_mrg_wave.png -------------------------------------------------------------------------------- /test/baseline_images/test_kf_filter_mt_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_kf_filter_mt_wave.png -------------------------------------------------------------------------------- /test/baseline_images/test_kf_filter_td_wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_kf_filter_td_wave.png -------------------------------------------------------------------------------- /test/baseline_images/test_line_plot_with_threshold1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_line_plot_with_threshold1.png -------------------------------------------------------------------------------- /test/baseline_images/test_line_plot_with_threshold2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_line_plot_with_threshold2.png -------------------------------------------------------------------------------- /test/baseline_images/test_line_plot_with_threshold3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_line_plot_with_threshold3.png -------------------------------------------------------------------------------- /test/baseline_images/test_line_plot_with_threshold4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_line_plot_with_threshold4.png -------------------------------------------------------------------------------- /test/baseline_images/test_pr_rotated_asymmetric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_pr_rotated_asymmetric.png -------------------------------------------------------------------------------- /test/baseline_images/test_pr_rotated_symmetric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_pr_rotated_symmetric.png -------------------------------------------------------------------------------- /test/baseline_images/test_quick_draw_rectangular_box1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_quick_draw_rectangular_box1.png -------------------------------------------------------------------------------- /test/baseline_images/test_quick_draw_spatial_basemap1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_quick_draw_spatial_basemap1.png -------------------------------------------------------------------------------- /test/baseline_images/test_quick_draw_spatial_basemap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_quick_draw_spatial_basemap2.png -------------------------------------------------------------------------------- /test/baseline_images/test_remove_dominant_signals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_remove_dominant_signals.png -------------------------------------------------------------------------------- /test/baseline_images/test_temp_rotated_asymmetric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_temp_rotated_asymmetric.png -------------------------------------------------------------------------------- /test/baseline_images/test_temp_rotated_symmetric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_temp_rotated_symmetric.png -------------------------------------------------------------------------------- /test/baseline_images/test_wrf_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/baseline_images/test_wrf_interface.png -------------------------------------------------------------------------------- /test/const_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/const_data.py -------------------------------------------------------------------------------- /test/const_define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/const_define.py -------------------------------------------------------------------------------- /test/create_test_file/data_create_test_core_windspharm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/create_test_file/data_create_test_core_windspharm.py -------------------------------------------------------------------------------- /test/data/test_input_asm_area_olr_uv.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_asm_area_olr_uv.nc -------------------------------------------------------------------------------- /test/data/test_input_core_eof.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_core_eof.nc -------------------------------------------------------------------------------- /test/data/test_input_core_mca.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_core_mca.nc -------------------------------------------------------------------------------- /test/data/test_input_core_read1.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_core_read1.nc -------------------------------------------------------------------------------- /test/data/test_input_core_read2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_core_read2.nc -------------------------------------------------------------------------------- /test/data/test_input_field_lanczos_bandpass.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_lanczos_bandpass.nc -------------------------------------------------------------------------------- /test/data/test_input_field_ocean_mixlayer_mld.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_ocean_mixlayer_mld.nc -------------------------------------------------------------------------------- /test/data/test_input_field_ocean_mixlayer_net_heating.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_ocean_mixlayer_net_heating.nc -------------------------------------------------------------------------------- /test/data/test_input_field_ocean_mixlayer_slt.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_ocean_mixlayer_slt.nc -------------------------------------------------------------------------------- /test/data/test_input_field_ocean_mixlayer_temper.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_ocean_mixlayer_temper.nc -------------------------------------------------------------------------------- /test/data/test_input_field_ocean_mixlayer_u.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_ocean_mixlayer_u.nc -------------------------------------------------------------------------------- /test/data/test_input_field_ocean_mixlayer_v.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_ocean_mixlayer_v.nc -------------------------------------------------------------------------------- /test/data/test_input_field_ocean_mixlayer_wt.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_field_ocean_mixlayer_wt.nc -------------------------------------------------------------------------------- /test/data/test_input_interp_mesh2mesh.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_interp_mesh2mesh.nc -------------------------------------------------------------------------------- /test/data/test_input_nino34.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_nino34.nc -------------------------------------------------------------------------------- /test/data/test_input_plot_pvalue.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_plot_pvalue.nc -------------------------------------------------------------------------------- /test/data/test_input_sst_mnmean_oisst_barnes_filter.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_sst_mnmean_oisst_barnes_filter.nc -------------------------------------------------------------------------------- /test/data/test_input_sst_mnmean_oisst_oceanic_front.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_sst_mnmean_oisst_oceanic_front.nc -------------------------------------------------------------------------------- /test/data/test_input_uwnd_202201_mon_mean_500hPa_sampledata.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_uwnd_202201_mon_mean_500hPa_sampledata.nc -------------------------------------------------------------------------------- /test/data/test_input_v200_mon.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_v200_mon.nc -------------------------------------------------------------------------------- /test/data/test_input_vwnd_202201_mon_mean_500hPa_sampledata.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_vwnd_202201_mon_mean_500hPa_sampledata.nc -------------------------------------------------------------------------------- /test/data/test_input_z200_mon.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_z200_mon.nc -------------------------------------------------------------------------------- /test/data/test_input_z500_mon.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_input_z500_mon.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_absolute_vorticity.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_absolute_vorticity.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_gradient.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_gradient.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_helmholtz.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_helmholtz.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_irrotational_component.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_irrotational_component.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_nondivergent_component.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_nondivergent_component.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_planetary_vorticity.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_planetary_vorticity.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_relative_vorticity_and_horizontal_divergence.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_relative_vorticity_and_horizontal_divergence.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_rossby_wave_source.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_rossby_wave_source.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_streamfunction_and_velocity_potential.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_streamfunction_and_velocity_potential.nc -------------------------------------------------------------------------------- /test/data/test_output_calc_wind_speed.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_calc_wind_speed.nc -------------------------------------------------------------------------------- /test/data/test_output_interp_mesh2mesh.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_interp_mesh2mesh.nc -------------------------------------------------------------------------------- /test/data/test_output_waveletpytest1.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_waveletpytest1.nc -------------------------------------------------------------------------------- /test/data/test_output_waveletpytest2.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_waveletpytest2.nc -------------------------------------------------------------------------------- /test/data/test_output_waveletpytest3.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/data/test_output_waveletpytest3.nc -------------------------------------------------------------------------------- /test/test_core_datanode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_datanode.py -------------------------------------------------------------------------------- /test/test_core_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_diff.py -------------------------------------------------------------------------------- /test/test_core_eddy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_eddy.py -------------------------------------------------------------------------------- /test/test_core_eof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_eof.py -------------------------------------------------------------------------------- /test/test_core_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_extract.py -------------------------------------------------------------------------------- /test/test_core_mk__test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_mk__test.py -------------------------------------------------------------------------------- /test/test_core_monthstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_monthstat.py -------------------------------------------------------------------------------- /test/test_core_normalized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_normalized.py -------------------------------------------------------------------------------- /test/test_core_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_read.py -------------------------------------------------------------------------------- /test/test_core_spharm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_spharm.py -------------------------------------------------------------------------------- /test/test_core_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_stat.py -------------------------------------------------------------------------------- /test/test_core_stat_calc_lead_lag_correlation_coefficients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_stat_calc_lead_lag_correlation_coefficients.py -------------------------------------------------------------------------------- /test/test_core_stat_calc_timeseries_correlations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_stat_calc_timeseries_correlations.py -------------------------------------------------------------------------------- /test/test_core_stat_corr_spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_stat_corr_spatial.py -------------------------------------------------------------------------------- /test/test_core_stat_multiple_linear_reg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_stat_multiple_linear_reg.py -------------------------------------------------------------------------------- /test/test_core_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_units.py -------------------------------------------------------------------------------- /test/test_core_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_utility.py -------------------------------------------------------------------------------- /test/test_core_utility1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_utility1.py -------------------------------------------------------------------------------- /test/test_core_utility2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_utility2.py -------------------------------------------------------------------------------- /test/test_core_variability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_variability.py -------------------------------------------------------------------------------- /test/test_core_variability1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_variability1.py -------------------------------------------------------------------------------- /test/test_core_windspharm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_windspharm.py -------------------------------------------------------------------------------- /test/test_core_yearstat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_core_yearstat.py -------------------------------------------------------------------------------- /test/test_field_air_sea_interaction_index_amm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_air_sea_interaction_index_amm.py -------------------------------------------------------------------------------- /test/test_field_air_sea_interaction_index_atlantic_nino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_air_sea_interaction_index_atlantic_nino.py -------------------------------------------------------------------------------- /test/test_field_air_sea_interaction_index_enso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_air_sea_interaction_index_enso.py -------------------------------------------------------------------------------- /test/test_field_air_sea_interaction_index_iobm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_air_sea_interaction_index_iobm.py -------------------------------------------------------------------------------- /test/test_field_air_sea_interaction_index_iod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_air_sea_interaction_index_iod.py -------------------------------------------------------------------------------- /test/test_field_air_sea_interaction_index_pdo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_air_sea_interaction_index_pdo.py -------------------------------------------------------------------------------- /test/test_field_boundary_layer_aerobulk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_boundary_layer_aerobulk.py -------------------------------------------------------------------------------- /test/test_field_equatorial_wave_wk_spectra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_equatorial_wave_wk_spectra.py -------------------------------------------------------------------------------- /test/test_field_heat_stress_humanindexmod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_heat_stress_humanindexmod.py -------------------------------------------------------------------------------- /test/test_field_monsoon_bsiso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_monsoon_bsiso.py -------------------------------------------------------------------------------- /test/test_field_monsoon_index__npwi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_monsoon_index__npwi.py -------------------------------------------------------------------------------- /test/test_field_ocean_mixlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_ocean_mixlayer.py -------------------------------------------------------------------------------- /test/test_field_ocean_oceanic_front.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_ocean_oceanic_front.py -------------------------------------------------------------------------------- /test/test_field_ocean_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_ocean_stability.py -------------------------------------------------------------------------------- /test/test_field_ocean_thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_ocean_thermal.py -------------------------------------------------------------------------------- /test/test_field_satellite_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_satellite_image.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_ao_nam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_ao_nam.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_cgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_cgt.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_da_bbo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_da_bbo.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_ea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_ea.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_eu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_eu.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_nao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_nao.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_pna.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_pna.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_srp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_srp.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_wa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_wa.py -------------------------------------------------------------------------------- /test/test_field_teleconnection_index_wp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_teleconnection_index_wp.py -------------------------------------------------------------------------------- /test/test_field_typhoon_potential_intensity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_typhoon_potential_intensity.py -------------------------------------------------------------------------------- /test/test_field_typhoon_track_axisymmetric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_field_typhoon_track_axisymmetric.py -------------------------------------------------------------------------------- /test/test_filed_equatorial_wave_mjo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filed_equatorial_wave_mjo.py -------------------------------------------------------------------------------- /test/test_filter_barnes_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_barnes_filter.py -------------------------------------------------------------------------------- /test/test_filter_butter_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_butter_filter.py -------------------------------------------------------------------------------- /test/test_filter_emd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_emd.py -------------------------------------------------------------------------------- /test/test_filter_gaussian_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_gaussian_filter.py -------------------------------------------------------------------------------- /test/test_filter_kf_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_kf_filter.py -------------------------------------------------------------------------------- /test/test_filter_lanczos_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_lanczos_filter.py -------------------------------------------------------------------------------- /test/test_filter_redfitpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_redfitpy.py -------------------------------------------------------------------------------- /test/test_filter_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_smooth.py -------------------------------------------------------------------------------- /test/test_filter_spatial_pcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_spatial_pcf.py -------------------------------------------------------------------------------- /test/test_filter_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_spectrum.py -------------------------------------------------------------------------------- /test/test_filter_wavelet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_filter_wavelet.py -------------------------------------------------------------------------------- /test/test_interp_barnes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_interp_barnes.py -------------------------------------------------------------------------------- /test/test_interp_mesh2mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_interp_mesh2mesh.py -------------------------------------------------------------------------------- /test/test_interp_mesh2point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_interp_mesh2point.py -------------------------------------------------------------------------------- /test/test_interp_modellevel2pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_interp_modellevel2pressure.py -------------------------------------------------------------------------------- /test/test_interp_pressure2altitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_interp_pressure2altitude.py -------------------------------------------------------------------------------- /test/test_interp_vinth2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_interp_vinth2p.py -------------------------------------------------------------------------------- /test/test_interp_vinth2p1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_interp_vinth2p1.py -------------------------------------------------------------------------------- /test/test_physics_condensation_lcl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_condensation_lcl.py -------------------------------------------------------------------------------- /test/test_physics_convection_stability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_convection_stability.py -------------------------------------------------------------------------------- /test/test_physics_dry.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_physics_energy_angmom_atm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_energy_angmom_atm.py -------------------------------------------------------------------------------- /test/test_physics_energy_enthalpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_energy_enthalpy.py -------------------------------------------------------------------------------- /test/test_physics_energy_latent_heat_water.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_energy_latent_heat_water.py -------------------------------------------------------------------------------- /test/test_physics_enthalpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_enthalpy.py -------------------------------------------------------------------------------- /test/test_physics_geo_coriolis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_geo_coriolis.py -------------------------------------------------------------------------------- /test/test_physics_geo_linrood_latwgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_geo_linrood_latwgt.py -------------------------------------------------------------------------------- /test/test_physics_moisture_dewpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_moisture_dewpoint.py -------------------------------------------------------------------------------- /test/test_physics_moisture_lapse_rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_moisture_lapse_rate.py -------------------------------------------------------------------------------- /test/test_physics_moisture_mix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_moisture_mix.py -------------------------------------------------------------------------------- /test/test_physics_moisture_vapor_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_moisture_vapor_pressure.py -------------------------------------------------------------------------------- /test/test_physics_moisture_wet_bulb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_moisture_wet_bulb.py -------------------------------------------------------------------------------- /test/test_physics_temperature_equivalent_potential_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_temperature_equivalent_potential_temperature.py -------------------------------------------------------------------------------- /test/test_physics_temperature_potential_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_temperature_potential_temperature.py -------------------------------------------------------------------------------- /test/test_physics_temperature_virtual_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_temperature_virtual_temperature.py -------------------------------------------------------------------------------- /test/test_physics_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_physics_transfer.py -------------------------------------------------------------------------------- /test/test_plot_axisticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_axisticker.py -------------------------------------------------------------------------------- /test/test_plot_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_bar.py -------------------------------------------------------------------------------- /test/test_plot_curved_quiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_curved_quiver.py -------------------------------------------------------------------------------- /test/test_plot_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_line.py -------------------------------------------------------------------------------- /test/test_plot_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_projection.py -------------------------------------------------------------------------------- /test/test_plot_quick_draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_quick_draw.py -------------------------------------------------------------------------------- /test/test_plot_significance__plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_significance__plot.py -------------------------------------------------------------------------------- /test/test_plot_taylor__diagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_plot_taylor__diagram.py -------------------------------------------------------------------------------- /test/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_version.py -------------------------------------------------------------------------------- /test/test_wrf_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/test_wrf_interface.py -------------------------------------------------------------------------------- /test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test/util.py -------------------------------------------------------------------------------- /test_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shenyulu/easyclimate/HEAD/test_requirements.txt --------------------------------------------------------------------------------