Skip to content

Commit

Permalink
Fix the alg interp cmap family
Browse files Browse the repository at this point in the history
  • Loading branch information
mindyls committed Aug 7, 2024
1 parent 1ae7aa8 commit 341eb2f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions geoips/commandline/geoips_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,12 @@ def __init__(self):
ep.value
for ep in sorted(metadata.entry_points(group="geoips.plugin_packages"))
]
print(self.entrypoints)
self.paths = [
dirname(resources.files(ep.value))
for ep in sorted(metadata.entry_points(group="geoips.plugin_packages"))
dirname(epvalue)
for epvalue in self.entrypoints
]

print(self.paths)

plugin_packages = PluginPackages()

Expand Down
2 changes: 1 addition & 1 deletion geoips/plugins/modules/procflows/single_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ def apply_interp_after_alg(
interp_plugin,
area_def,
alg_xarray,
alg_xarray,
xarray.Dataset(),
interp_args,
processed_xarrays,
)
Expand Down

0 comments on commit 341eb2f

Please sign in to comment.