Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MPAS native output support + example #16

Merged
merged 33 commits into from
Feb 5, 2024
Merged

MPAS native output support + example #16

merged 33 commits into from
Feb 5, 2024

Commits on Nov 17, 2023

  1. Let satellite example work with parallel identify

    probably temporary, may not really be the best idea
    
    but otherwise get
    
      cannot pickle '_thread.lock' object
    
    in the joblib parallel setup
    
    normally don't use parallel for this anyway, since there are only
    6 time steps and it is pretty fast in serial
    zmoon committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    ee9681e View commit details
    Browse the repository at this point in the history
  2. Add ID for MPAS UG file

    since over 100 MB it hits the virus check page though
    zmoon committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    909d3f2 View commit details
    Browse the repository at this point in the history
  3. Get past question about 100 MB file

    Also tried this longer command, which supposedly did it in the past
    
    ["wget", "--no-verbose", "--no-check-certificate", url, "-O", (HERE / fn).as_posix(), "-r", "-A", "'uc*'", "-e", "robots=off", "-nd"]
    
    but didn't work now
    zmoon committed Nov 17, 2023
    Configuration menu
    Copy the full SHA
    e091b9a View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2023

  1. Ignore ug file

    zmoon committed Nov 18, 2023
    Configuration menu
    Copy the full SHA
    f215e7d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ef40b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    963552c View commit details
    Browse the repository at this point in the history
  4. Initial MPAS ug loader

    zmoon committed Nov 18, 2023
    Configuration menu
    Copy the full SHA
    a6136f7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ae43a74 View commit details
    Browse the repository at this point in the history
  6. Type tb-from-ir return

    zmoon committed Nov 18, 2023
    Configuration menu
    Copy the full SHA
    cabb54b View commit details
    Browse the repository at this point in the history
  7. Initial MPAS ug nb

    plotting the data and seeing how the contouring could work
    zmoon committed Nov 18, 2023
    Configuration menu
    Copy the full SHA
    bc0b432 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. Clean up MPAS ug data plots

    zmoon committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    17e8786 View commit details
    Browse the repository at this point in the history
  2. Support ug in contours func

    zmoon committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    a80c5ce View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eb0fa6c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    74d6f3f View commit details
    Browse the repository at this point in the history
  5. Doc ug a bit in contours

    zmoon committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    c7207e6 View commit details
    Browse the repository at this point in the history
  6. Clean up CE/contour comparisons

    zmoon committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    bdc68ff View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Spruce up MPAS ug CE figures

    zmoon committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    ddf02dd View commit details
    Browse the repository at this point in the history
  2. Update data documentation

    zmoon committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    5831896 View commit details
    Browse the repository at this point in the history
  3. Add module directive

    zmoon committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    a0665bb View commit details
    Browse the repository at this point in the history
  4. Please mypy

    zmoon committed Dec 1, 2023
    Configuration menu
    Copy the full SHA
    0060b65 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    20580fc View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. Combine the two MPAS CE plots

    they are the same geo area and such, might as well
    zmoon committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    d022698 View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2024

  1. Configuration menu
    Copy the full SHA
    c3ee5b9 View commit details
    Browse the repository at this point in the history
  2. Download examples with gdown (non-optional)

    wget command for the large file that worked before doesn't anymore
    
    there are apparently workarounds that work in 2024
    https://medium.com/geekculture/wget-large-files-from-google-drive-336ba2e1c991
    
    but gdown seems the safer way to go
    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    e15e82a View commit details
    Browse the repository at this point in the history
  3. Normalize nb beginnings

    and hide the output of the first (import) cell
    
    so as not to see the
    
    ERROR 1: PROJ: proj_create_from_database ... failed
    
    message
    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    8101174 View commit details
    Browse the repository at this point in the history
  4. Link to example nbs in data loaders

    note: had to use :func: or the functions stopped getting linked
    with the addition of a :doc:
    
    seems :ref: works fine without this modification, but then get
    annoying anchor links that aren't needed
    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    52695f7 View commit details
    Browse the repository at this point in the history
  5. Doesn't have to be DataArray

    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    84888d1 View commit details
    Browse the repository at this point in the history
  6. Tweak some data docstrings

    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    31e90eb View commit details
    Browse the repository at this point in the history
  7. Use .sizes to get dim sizes

    saw this warning in RTD:
    tams/data.py:238: FutureWarning: The return type of `Dataset.dims` will be changed to return a set of dimension names in future, in order to be more consistent with `DataArray.dims`. To access a mapping from dimension names to lengths, please use `Dataset.sizes`.
    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    05a0a42 View commit details
    Browse the repository at this point in the history
  8. Add triang figure

    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    ec76cf8 View commit details
    Browse the repository at this point in the history
  9. Remove lock=False

    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    abc02e9 View commit details
    Browse the repository at this point in the history
  10. 15-km; triang notes; toggle

    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    043c158 View commit details
    Browse the repository at this point in the history
  11. Enhance data-in-contours doc

    and crossref the example
    
    also str agg wasn't working I think,
    but now it should
    
    but really should type it properly
    since single callable should be supported as well
    zmoon committed Feb 4, 2024
    Configuration menu
    Copy the full SHA
    d424c63 View commit details
    Browse the repository at this point in the history