From 9cac00af03142024812e65820e1b9bffc7965ce8 Mon Sep 17 00:00:00 2001 From: erogluorhan Date: Wed, 25 Feb 2026 09:34:34 -0700 Subject: [PATCH] Make branding corrections --- CONTRIBUTING.md | 4 ++-- INSTALLATION.md | 4 ++-- docs/gallery.rst | 2 +- docs/index.rst | 6 +++--- docs/user-guide/area_calc.ipynb | 4 ++-- test/core/test_accessors.py | 2 +- uxarray/core/accessors.py | 4 ++-- uxarray/core/dataarray.py | 2 +- uxarray/core/dataset.py | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 791b44efd..83d46dc7d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ -# Contributing to Uxarray +# Contributing to UXarray -Anyone can contribute to and participate in the Uxarray project +Anyone can contribute to and participate in the UXarray project at any levels of project development! We conduct all of our work in the open, and all of our work is Open Source Licensed. diff --git a/INSTALLATION.md b/INSTALLATION.md index 27e9cbc57..aca70f302 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -1,5 +1,5 @@ -# How to install Uxarray +# How to install UXarray Please see our -[Uxarray Installation](https://uxarray.readthedocs.io/en/latest/getting-started/installation.html) +[UXarray Installation](https://uxarray.readthedocs.io/en/latest/getting-started/installation.html) instructions for detailed information! diff --git a/docs/gallery.rst b/docs/gallery.rst index 5b211a402..10de59ace 100644 --- a/docs/gallery.rst +++ b/docs/gallery.rst @@ -29,7 +29,7 @@ across various interesting datasets. Workflow Examples ----------------- -The following notebooks showcase workflows of Uxarray in action. +The following notebooks showcase workflows of UXarray in action. .. include:: workflow-examples-gallery.txt diff --git a/docs/index.rst b/docs/index.rst index 2bc353e5a..917949834 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,4 +1,4 @@ -.. Uxarray documentation master file, created by +.. UXarray documentation master file, created by sphinx-quickstart on Tues Oct 26 08:45:00 2019. You can adapt this file completely to your liking, but it should at least contain the root `toctree` directive. @@ -6,7 +6,7 @@ .. module:: uxarray .. meta:: - :description: Uxarray Python module + :description: UXarray Python module :keywords: weather research and forecasting, model, weather, numerical weather prediction, model, matplotlib, cartopy, nsf ncar, ucar, cisl, UC Davis, SEATS, ugrid, @@ -102,7 +102,7 @@ around the `UGRID `_ conv Gallery API Reference Tutorials and Videos - Cite Uxarray + Cite UXarray .. toctree:: :maxdepth: 1 diff --git a/docs/user-guide/area_calc.ipynb b/docs/user-guide/area_calc.ipynb index 770db6a91..f7c016dd9 100644 --- a/docs/user-guide/area_calc.ipynb +++ b/docs/user-guide/area_calc.ipynb @@ -277,7 +277,7 @@ "gl.top_labels = False\n", "\n", "plt.title(\n", - " \"UXArray Grid of Just One Triangle (Chicago, Miami, Newburgh NY) Over the USA\"\n", + " \"UXarray Grid of Just One Triangle (Chicago, Miami, Newburgh NY) Over the USA\"\n", ")\n", "plt.legend()\n", "plt.show()" @@ -662,7 +662,7 @@ " ]\n", ")\n", "\n", - "# Create UXArray grid for four small polygons\n", + "# Create UXarray grid for four small polygons\n", "faces = ux.Grid.from_topology(\n", " node_lon=node_lon,\n", " node_lat=node_lat,\n", diff --git a/test/core/test_accessors.py b/test/core/test_accessors.py index f154ab588..a986de404 100644 --- a/test/core/test_accessors.py +++ b/test/core/test_accessors.py @@ -1,5 +1,5 @@ """ -Test module for UxArray accessor functionality (groupby, resample, rolling, etc.). +Test module for UXarray accessor functionality (groupby, resample, rolling, etc.). This module tests that accessor methods properly preserve uxgrid attributes and return UxDataArray/UxDataset objects. diff --git a/uxarray/core/accessors.py b/uxarray/core/accessors.py index 4d4dd4c84..1642b5524 100644 --- a/uxarray/core/accessors.py +++ b/uxarray/core/accessors.py @@ -1,5 +1,5 @@ """ -Delegation-based accessor classes for UxArray groupby operations. +Delegation-based accessor classes for UXarray groupby operations. These classes wrap xarray's groupby/resample/etc objects and ensure that operations return UxDataArray/UxDataset objects with preserved uxgrid. @@ -34,7 +34,7 @@ class BaseAccessor: - """Base class for all UxArray accessor classes.""" + """Base class for all UXarray accessor classes.""" # Default methods known to return DataArrays/Datasets - optimized for performance _DEFAULT_PRESERVE_METHODS = { diff --git a/uxarray/core/dataarray.py b/uxarray/core/dataarray.py index 64bbeacb4..b93650f72 100644 --- a/uxarray/core/dataarray.py +++ b/uxarray/core/dataarray.py @@ -573,7 +573,7 @@ def integrate( Examples -------- - Open a Uxarray dataset and compute the integral + Open a UXarray dataset and compute the integral >>> import uxarray as ux >>> uxds = ux.open_dataset("grid.ug", "centroid_pressure_data_ug") diff --git a/uxarray/core/dataset.py b/uxarray/core/dataset.py index 8528494a8..3dc1feffc 100644 --- a/uxarray/core/dataset.py +++ b/uxarray/core/dataset.py @@ -567,7 +567,7 @@ def integrate(self, quadrature_rule="triangular", order=4): Examples -------- - Open a Uxarray dataset + Open a UXarray dataset >>> import uxarray as ux >>> uxds = ux.open_dataset("grid.ug", "centroid_pressure_data_ug")