dist-s1-enumerator 1.0.5__py3-none-any.whl → 1.0.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dist_s1_enumerator/data/jpl_burst_geo.parquet +0 -0
- dist_s1_enumerator/dist_enum.py +8 -2
- {dist_s1_enumerator-1.0.5.dist-info → dist_s1_enumerator-1.0.7.dist-info}/METADATA +10 -1
- {dist_s1_enumerator-1.0.5.dist-info → dist_s1_enumerator-1.0.7.dist-info}/RECORD +7 -7
- {dist_s1_enumerator-1.0.5.dist-info → dist_s1_enumerator-1.0.7.dist-info}/WHEEL +0 -0
- {dist_s1_enumerator-1.0.5.dist-info → dist_s1_enumerator-1.0.7.dist-info}/licenses/LICENSE +0 -0
- {dist_s1_enumerator-1.0.5.dist-info → dist_s1_enumerator-1.0.7.dist-info}/top_level.txt +0 -0
|
Binary file
|
dist_s1_enumerator/dist_enum.py
CHANGED
|
@@ -123,7 +123,10 @@ def enumerate_one_dist_s1_product(
|
|
|
123
123
|
if lookback_strategy == 'immediate_lookback':
|
|
124
124
|
# Add 5 minutes buffer to ensure we don't include post-images in pre-image set.
|
|
125
125
|
print('Searching for pre-images for immediate_lookback products')
|
|
126
|
-
print(
|
|
126
|
+
print(
|
|
127
|
+
f'Lookback days {params.delta_lookback_days} and window days {params.delta_window_days} '
|
|
128
|
+
f'with max pre-images per burst {params.max_pre_imgs_per_burst}'
|
|
129
|
+
)
|
|
127
130
|
post_date_min = df_rtc_post.acq_dt.min() - pd.Timedelta(seconds=300)
|
|
128
131
|
earliest_lookback = params.delta_window_days + params.delta_lookback_days
|
|
129
132
|
latest_lookback = params.delta_lookback_days
|
|
@@ -146,7 +149,10 @@ def enumerate_one_dist_s1_product(
|
|
|
146
149
|
df_rtc_pre_list = []
|
|
147
150
|
zipped_data = list(zip(params.delta_lookback_days, params.max_pre_imgs_per_burst))
|
|
148
151
|
print('Searching for pre-images for multi_window baseline')
|
|
149
|
-
print(
|
|
152
|
+
print(
|
|
153
|
+
f'Lookback days {params.delta_lookback_days} and window days {params.delta_window_days} '
|
|
154
|
+
f'with max pre-images per burst {params.max_pre_imgs_per_burst}'
|
|
155
|
+
)
|
|
150
156
|
for delta_lookback_day, max_pre_img_per_burst in tqdm(
|
|
151
157
|
zipped_data,
|
|
152
158
|
desc='Windows',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dist-s1-enumerator
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.7
|
|
4
4
|
Summary: Enumeration and ops library for the OPERA DIST-S1 project
|
|
5
5
|
Author-email: "Richard West, Charlie Marshak, Talib Oliver-Cabrera, and Jungkyo Jung" <charlie.z.marshak@jpl.nasa.gov>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -125,6 +125,15 @@ There are two category of tests: unit tests and integration tests. The former ca
|
|
|
125
125
|
The integration tests that are the most time consuming are represented by the notebooks and are run only upon a release PR.
|
|
126
126
|
These notebook tests are tagged with `notebooks` and can be excluded from the other tests with `pytest tests -m 'not notebooks'`.
|
|
127
127
|
|
|
128
|
+
# Remarks about the Dateline/Dateline and Geometry
|
|
129
|
+
|
|
130
|
+
The antimeridian (or dateline) is the line at the -180 longitude mark that global CRS tiles are wrapped by standard global reference systems.
|
|
131
|
+
The geometries of the bursts and the MGRS tiles in this package are all in `epsg:4326` (standard lon/lat).
|
|
132
|
+
The geometries are all between -180 and 180 so those geometries that cross the antimeridian/dateline are generally wrapped.
|
|
133
|
+
For MGRS tiles, the statement that a geometry overlaps the antimeridian occurs if and only if the geometry is a Polygon.
|
|
134
|
+
The same is true for burst geometries.
|
|
135
|
+
See `test_antimeridian_crossing` in [`tests/test_mgrs_burst_data.py`](tests/test_mgrs_burst_data.py).
|
|
136
|
+
|
|
128
137
|
# Contributing
|
|
129
138
|
|
|
130
139
|
We welcome contributions to this open-source package. To do so:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
dist_s1_enumerator/__init__.py,sha256=L89uOLGobmF-ZsBA767RiGpKCDKVx6KOK6wJkjGQ69M,1766
|
|
2
2
|
dist_s1_enumerator/asf.py,sha256=m0LHIBM6OSeoNi2Htin5oeeyGjsWecFgyKeqUXNcbDo,13850
|
|
3
|
-
dist_s1_enumerator/dist_enum.py,sha256=
|
|
3
|
+
dist_s1_enumerator/dist_enum.py,sha256=g4oHh_0T2IGFdCQGJiG9BaMMv4uvbbp3hk6Kw9aHHv0,21388
|
|
4
4
|
dist_s1_enumerator/dist_enum_inputs.py,sha256=KxGZNQYEsN2KNPcrHnh8Zi5e84dBdbtyeVV-aA8XI5o,6732
|
|
5
5
|
dist_s1_enumerator/exceptions.py,sha256=JhT8fIEmW3O2OvUQADkEJkL8ZrUN5pkKNzCCSt33goQ,82
|
|
6
6
|
dist_s1_enumerator/mgrs_burst_data.py,sha256=jifDFf1NUb-_4i9vYpi3rCUzM_qJCLbXkS-fu42iwA8,7538
|
|
@@ -8,11 +8,11 @@ dist_s1_enumerator/param_models.py,sha256=DI2MgSxiPo7HiRKtXX8bxZnQtuoYAmtAcdYYrn
|
|
|
8
8
|
dist_s1_enumerator/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
9
|
dist_s1_enumerator/rtc_s1_io.py,sha256=TPlgMdyjRYnGWCt7J1nQ1AY90lAPQoMy2BN0oFMw4gg,5267
|
|
10
10
|
dist_s1_enumerator/tabular_models.py,sha256=OjsTg6fN9Mq-LHVKuz9klFD3DsG0WkfPmfDfdZYUJOw,3189
|
|
11
|
-
dist_s1_enumerator/data/jpl_burst_geo.parquet,sha256=
|
|
11
|
+
dist_s1_enumerator/data/jpl_burst_geo.parquet,sha256=G25W_P50JpnOANtwFIVI36Douw00axJClD3QmW-uh8o,36136927
|
|
12
12
|
dist_s1_enumerator/data/mgrs.parquet,sha256=P2jY4l2dztz_wdzZATBwgooa5mIZSC8TgJbHUjR5m0c,601482
|
|
13
13
|
dist_s1_enumerator/data/mgrs_burst_lookup_table.parquet,sha256=RjrgwRKn2Ac2q4_8mk9DpkX5FXPYPBReiNbqT0iFp5A,3364657
|
|
14
|
-
dist_s1_enumerator-1.0.
|
|
15
|
-
dist_s1_enumerator-1.0.
|
|
16
|
-
dist_s1_enumerator-1.0.
|
|
17
|
-
dist_s1_enumerator-1.0.
|
|
18
|
-
dist_s1_enumerator-1.0.
|
|
14
|
+
dist_s1_enumerator-1.0.7.dist-info/licenses/LICENSE,sha256=qsoT0jnoSQSgSzA-sywESwmVxC3XcugfW-3vctvz2aM,11346
|
|
15
|
+
dist_s1_enumerator-1.0.7.dist-info/METADATA,sha256=Jn3C2wY1oS_zv0j_n6UbF-fAXKvFJ43X5n4Ftk6zMhw,9483
|
|
16
|
+
dist_s1_enumerator-1.0.7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
dist_s1_enumerator-1.0.7.dist-info/top_level.txt,sha256=5-RGu6oxsKKyhybZZSuUImALhcQT8ZOAnVv2MmrESDE,19
|
|
18
|
+
dist_s1_enumerator-1.0.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|