Metadata-Version: 2.1
Name: NanoscoPy
Version: 0.0.4
Summary: microscopy data processor
Home-page: https://github.com/darianSmalley/NanoscoPy
Author: Jesse Thompson, Darian Smalley
Author-email: darian.smalley@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/darianSmalley/NanoscoPy/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# NanoscoPy
An open source repo for the analysis of experimental microscopy data common in materials and surface science.

## Example Usage
```
    import nanoscopy as nano
    import matplotlib.pyplot as plt

    # Specify the file to be imported
    filepath_sxm = '../ExampleDataFiles/STM_Au-111_Flat.sxm'

    # Read the data
    scan = nano.spm.io.read(filepath_sxm)[0]

    # Select the forward pass of the height channel from the data
    image = scan.data['Z'][0]

    # Correct the data
    flattened_image = nano.spm.process.basic_flatten(image)

    # Show flattened image 
    plt.imshow(flattened_image)
```

