Skip to content

Commit

Permalink
fix a bug with rcm imports
Browse files Browse the repository at this point in the history
  • Loading branch information
agrouaze committed Nov 12, 2024
1 parent 5a6480d commit 11c2483
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/xsar/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
__all__ = [
# "open_dataset",
# "product_info",
"open_dataset",
"open_datatree",
"product_info",
"Sentinel1Meta",
"Sentinel1Dataset",
"RadarSat2Dataset",
Expand All @@ -14,8 +15,9 @@
from xsar.radarsat2_dataset import RadarSat2Dataset
from xsar.sentinel1_dataset import Sentinel1Dataset
from xsar.sentinel1_meta import Sentinel1Meta
from rcm_meta import RcmMeta
from xsar.rcm_meta import RcmMeta
from xsar.radarsat2_meta import RadarSat2Meta
from xsar.rcm_dataset import RcmDataset
from xsar.base_dataset import BaseDataset
from xsar.base_meta import BaseMeta
from xsar.xsar import open_dataset,open_datatree,product_info
2 changes: 2 additions & 0 deletions src/xsar/radarsat2_meta.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import pdb

import pandas as pd
import rasterio
from rasterio.control import GroundControlPoint
Expand Down

0 comments on commit 11c2483

Please sign in to comment.