Skip to content

Commit

Permalink
Aims to address #58 and #23 by renaming to
Browse files Browse the repository at this point in the history
  • Loading branch information
ks905383 committed Feb 13, 2024
1 parent c306f10 commit 5bd6ef8
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/test_auxfuncs.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest
import numpy as np
import xarray as xr
from xagg.aux import (normalize,fix_ds,get_bnds,subset_find)
from xagg.auxfuncs import (normalize,fix_ds,get_bnds,subset_find)

##### normalize() tests #####
def test_normalize():
Expand Down
2 changes: 1 addition & 1 deletion xagg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# happening as methods to the classes that are exported from those
# two functions)
from .wrappers import pixel_overlaps
from .aux import (normalize,fix_ds,get_bnds,subset_find)
from .auxfuncs import (normalize,fix_ds,get_bnds,subset_find)
from .core import (aggregate,read_wm)
File renamed without changes.
2 changes: 1 addition & 1 deletion xagg/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import re
import os

from . aux import (find_rel_area,normalize,fix_ds,get_bnds,subset_find,list_or_first)
from . auxfuncs import (find_rel_area,normalize,fix_ds,get_bnds,subset_find,list_or_first)
from . classes import (weightmap,aggregated)

class NoOverlapError(Exception):
Expand Down
2 changes: 1 addition & 1 deletion xagg/export.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import warnings
import shutil

from . aux import (normalize,fix_ds,get_bnds,subset_find)
from . auxfuncs import (normalize,fix_ds,get_bnds,subset_find)


def export_weightmap(wm_obj,fn,overwrite=False):
Expand Down

0 comments on commit 5bd6ef8

Please sign in to comment.