stevenpawley / Pyspatialml

Machine learning modelling for spatial data
GNU General Public License v3.0
145 stars 29 forks source link

cannot import nc_datasets #16

Closed ritviksahajpal closed 4 years ago

ritviksahajpal commented 4 years ago

Thanks for a great package! A query, I get this error when trying to import nc_dataset

import pyspatialml.datasets.nc_dataset as nc
ModuleNotFoundError: No module named 'pyspatialml.datasets.nc_dataset'

Does nc_dataset need to be downloaded separately?

stevenpawley commented 4 years ago

Sorry for the confusion - I need to update the GitHub readme file. You can import the datasets using:

import pyspatialml.datasets.nc as nc
ritviksahajpal commented 4 years ago

excellent, thanks!!