# Hey iam having error : module ‘wradlib’ has no attribute ‘clutter’ when iam doing gabella clutter remove in my cfardial files,can you help me with this

**URL:** https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391
**Category:** General
**Created:** [February 2, 2024, 6:01am UTC](https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391 "2024-02-02T06:01:15Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![ankithva](https://yyz2.discourse-cdn.com/free1/user_avatar/openradar.discourse.group/ankithva/32/317_2.png) [@ankithva](https://openradar.discourse.group/u/ankithva)
#### Post date: [February 2, 2024, 6:01am UTC](https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391/1 "2024-02-02T06:01:15Z")

</div>

hey iam having error : module ‘wradlib’ has no attribute ‘clutter’ when iam doing gabella clutter remove in my cfardial files,can you help me with this

 ![Screenshot 2024-02-02 013212](https://global.discourse-cdn.com/free1/uploads/openradar/original/1X/085e49eb386ce1761cf07a1e6a275d6138dc2a74.png)

---

<div class="post-metadata">

### Author: ![jorahu](https://yyz2.discourse-cdn.com/free1/user_avatar/openradar.discourse.group/jorahu/32/19_2.png) [@jorahu](https://openradar.discourse.group/u/jorahu)
#### Post date: [February 2, 2024, 3:39pm UTC](https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391/2 "2024-02-02T15:39:21Z")

</div>

Hey

How are you importing wradlib package? I suspect you have overwritten some variables, or there is some sort of memory error. Does this error persist if you restart Kernel (from the Kernel menu, select Restart Kernel) and rerun all your code?

Or it might be a version issue (although I doubt that). Please tell the output of `print(wrl. __version__ )`.

---

<div class="post-metadata">

### Author: ![zssherman](https://yyz2.discourse-cdn.com/free1/user_avatar/openradar.discourse.group/zssherman/32/35_2.png) [@zssherman](https://openradar.discourse.group/u/zssherman)
#### Post date: [February 2, 2024, 5:17pm UTC](https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391/3 "2024-02-02T17:17:07Z")

</div>

@ankithva I believe the function is registered to the xarray data array obj:  
[https://docs.wradlib.org/en/latest/notebooks/classify/clutter\_gabella.html](https://docs.wradlib.org/en/latest/notebooks/classify/clutter_gabella.html)

So its called as a function from the obj itself which is why its not finding the import. I would maybe try getting it into a wradlib dataarray obj.

Others might have more info as well, but that’s what I can see so far from an initial glance.

---

<div class="post-metadata">

### Author: ![kmuehlbauer](https://yyz2.discourse-cdn.com/free1/user_avatar/openradar.discourse.group/kmuehlbauer/32/439_2.png) [@kmuehlbauer](https://openradar.discourse.group/u/kmuehlbauer)
#### Post date: [February 3, 2024, 6:42am UTC](https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391/4 "2024-02-03T06:42:17Z")

</div>

Hi all,

Since wradlib 2.0 the `clutter` -module was integrated into `classify` -module.  
Just use `classify` instead of `clutter` when calling these functions.

Please also check with [wradlib 2.0 migration — wradlib](https://docs.wradlib.org/en/latest/migration.html)

HTH,  
Kai

---

<div class="post-metadata">

### Author: ![ankithva](https://yyz2.discourse-cdn.com/free1/user_avatar/openradar.discourse.group/ankithva/32/317_2.png) [@ankithva](https://openradar.discourse.group/u/ankithva)
#### Post date: [February 3, 2024, 12:28pm UTC](https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391/5 "2024-02-03T12:28:14Z")

</div>

2.0.0 is the version

---

<div class="post-metadata">

### Author: ![ankithva](https://yyz2.discourse-cdn.com/free1/user_avatar/openradar.discourse.group/ankithva/32/317_2.png) [@ankithva](https://openradar.discourse.group/u/ankithva)
#### Post date: [February 4, 2024, 4:53am UTC](https://openradar.discourse.group/t/hey-iam-having-error-module-wradlib-has-no-attribute-clutter-when-iam-doing-gabella-clutter-remove-in-my-cfardial-files-can-you-help-me-with-this/391/7 "2024-02-04T04:53:59Z")

</div>

Thankyou so much sir
