-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/split-datalib-to-separate-repo' into develop-3.X
- Loading branch information
Showing
40 changed files
with
44 additions
and
5,609 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,16 @@ | ||
""" | ||
Datalib Public API | ||
This module gets imported in the root __init__.py | ||
This module import the podpacdatalib package | ||
and exposed its contents to podpac.datalib | ||
""" | ||
|
||
import sys | ||
try: | ||
from podpacdatalib import * | ||
except ModuleNotFoundError: | ||
import logging | ||
|
||
from podpac.datalib.cosmos_stations import COSMOSStations | ||
from podpac.datalib.drought_monitor import DroughtCategory, DroughtMonitorCategory | ||
from podpac.datalib.egi import EGI | ||
from podpac.datalib.gfs import GFS, GFSLatest | ||
from podpac.datalib.modis_pds import MODIS | ||
from podpac.datalib.satutils import Landsat8, Sentinel2 | ||
from podpac.datalib.smap_egi import SMAP | ||
from podpac.datalib.terraintiles import TerrainTiles | ||
from podpac.datalib.weathercitizen import WeatherCitizen | ||
from podpac.datalib.soilscape import SoilSCAPE20min | ||
from podpac.datalib import soilgrids | ||
|
||
# intake requires python >= 3.6 | ||
if sys.version >= "3.6": | ||
from podpac.datalib.intake_catalog import IntakeCatalog | ||
_logger = logging.getLogger(__name__) | ||
_logger.warning( | ||
"The podpacdatalib module is not installed but user tried to import podpac.datalib which depends on it." | ||
) |
Oops, something went wrong.