Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

Commit

Permalink
#326, #546 - ODP dataset fetch and open, excluding problematic variab…
Browse files Browse the repository at this point in the history
…les, flake8 fix, optimize imports
  • Loading branch information
Krzysztof (Chris) Bernat committed Mar 9, 2018
1 parent f3bb1d8 commit 77f1c96
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions cate/ds/esa_cci_odp.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,26 +40,24 @@
import json
import os
import re
import socket
import urllib.error
import urllib.parse
import urllib.request
import socket
import xarray as xr
from collections import OrderedDict
from datetime import datetime, timedelta
from math import ceil
from typing import Sequence, Tuple, Optional, Any

from shapely.geometry import Polygon

import xarray as xr
from owslib.csw import CatalogueServiceWeb
from owslib.namespaces import Namespaces

from cate.conf import get_config_value, get_data_stores_path
from cate.conf.defaults import NETCDF_COMPRESSION_LEVEL
from cate.core.ds import DATA_STORE_REGISTRY, DataAccessError, DataStore, DataSource, Schema, open_xarray_dataset
from cate.core.opimpl import subset_spatial_impl, normalize_impl
from cate.core.types import PolygonLike, TimeLike, TimeRange, TimeRangeLike, VarNamesLike, VarNames
from cate.core.types import PolygonLike, TimeLike, TimeRange, TimeRangeLike, VarNamesLike
from cate.ds.local import add_to_data_store_registry, LocalDataSource, LocalDataStore
from cate.util.monitor import Cancellation, Monitor

Expand Down

0 comments on commit 77f1c96

Please sign in to comment.