Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
@@ -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!
2 changes: 1 addition & 1 deletion docs/gallery.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.. 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.

.. 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,
Expand Down Expand Up @@ -102,7 +102,7 @@ around the `UGRID <http://ugrid-conventions.github.io/ugrid-conventions/>`_ conv
Gallery <gallery>
API Reference <api>
Tutorials and Videos <tutorials>
Cite Uxarray <citation>
Cite UXarray <citation>

.. toctree::
:maxdepth: 1
Expand Down
4 changes: 2 additions & 2 deletions docs/user-guide/area_calc.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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()"
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion test/core/test_accessors.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions uxarray/core/accessors.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion uxarray/core/dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
2 changes: 1 addition & 1 deletion uxarray/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down
Loading