drizzle 2.0.1__cp310-cp310-macosx_10_9_x86_64.whl → 2.1.0__cp310-cp310-macosx_10_9_x86_64.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.
Potentially problematic release.
This version of drizzle might be problematic. Click here for more details.
- drizzle/cdrizzle.cpython-310-darwin.so +0 -0
- drizzle/resample.py +22 -17
- drizzle/tests/helpers.py +61 -30
- drizzle/tests/test_resample.py +125 -0
- drizzle/tests/test_utils.py +1 -2
- drizzle/utils.py +1 -1
- {drizzle-2.0.1.dist-info → drizzle-2.1.0.dist-info}/METADATA +6 -37
- drizzle-2.1.0.dist-info/RECORD +16 -0
- {drizzle-2.0.1.dist-info → drizzle-2.1.0.dist-info}/WHEEL +2 -1
- drizzle-2.0.1.dist-info/RECORD +0 -16
- {drizzle-2.0.1.dist-info → drizzle-2.1.0.dist-info/licenses}/LICENSE.rst +0 -0
- {drizzle-2.0.1.dist-info → drizzle-2.1.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
drizzle/resample.py
CHANGED
|
@@ -76,23 +76,24 @@ class Drizzle:
|
|
|
76
76
|
information about which input image has contributed to the corresponding
|
|
77
77
|
pixel in the resampled data array. Context image uses 32 bit integers to
|
|
78
78
|
encode this information and hence it can keep track of only 32 input images.
|
|
79
|
-
|
|
80
|
-
second input image, and so on.
|
|
81
|
-
|
|
79
|
+
The first bit corresponds to the first input image, the second bit
|
|
80
|
+
corresponds to the second input image, and so on.
|
|
81
|
+
We call this (0-indexed) order "context ID" which is represented by
|
|
82
|
+
the ``ctx_id`` parameter/property. If the number of
|
|
82
83
|
input images exceeds 32, then it is necessary to have multiple context
|
|
83
|
-
images ("planes") to hold information about all input images with the first
|
|
84
|
+
images ("planes") to hold information about all input images, with the first
|
|
84
85
|
plane encoding which of the first 32 images contributed to the output data
|
|
85
|
-
pixel, second plane representing next 32 input images (number 33-64),
|
|
86
|
-
For this reason, context array is either a 2D array (if the total
|
|
87
|
-
of resampled images is less than 33) of the type `numpy.int32` and
|
|
88
|
-
``(ny, nx)`` or a a 3D array of shape ``(np, ny, nx)`` where ``nx``
|
|
89
|
-
``ny`` are dimensions of image
|
|
90
|
-
|
|
91
|
-
``k`` in a pixel with coordinates ``(p, y, x)`` is 0 then input
|
|
92
|
-
``32 * p + k`` (0-indexed) did not contribute to the output
|
|
93
|
-
with array coordinates ``(y, x)`` and if that bit is 1 then
|
|
94
|
-
number ``32 * p + k`` did contribute to the pixel ``(y, x)``
|
|
95
|
-
resampled image.
|
|
86
|
+
pixel, the second plane representing next 32 input images (number 33-64),
|
|
87
|
+
etc. For this reason, context array is either a 2D array (if the total
|
|
88
|
+
number of resampled images is less than 33) of the type `numpy.int32` and
|
|
89
|
+
shape ``(ny, nx)`` or a a 3D array of shape ``(np, ny, nx)`` where ``nx``
|
|
90
|
+
and ``ny`` are dimensions of the image data. ``np`` is the number of
|
|
91
|
+
"planes" computed as ``(number of input images - 1) // 32 + 1``. If a bit at
|
|
92
|
+
position ``k`` in a pixel with coordinates ``(p, y, x)`` is 0, then input
|
|
93
|
+
image number ``32 * p + k`` (0-indexed) did not contribute to the output
|
|
94
|
+
data pixel with array coordinates ``(y, x)`` and if that bit is 1, then
|
|
95
|
+
input image number ``32 * p + k`` did contribute to the pixel ``(y, x)``
|
|
96
|
+
in the resampled image.
|
|
96
97
|
|
|
97
98
|
As an example, let's assume we have 8 input images. Then, when ``out_ctx``
|
|
98
99
|
pixel values are displayed using binary representation (and decimal in
|
|
@@ -413,7 +414,11 @@ class Drizzle:
|
|
|
413
414
|
)
|
|
414
415
|
|
|
415
416
|
if out_img is None:
|
|
416
|
-
self.
|
|
417
|
+
if self._fillval.upper() in ["INDEF", "NAN"]:
|
|
418
|
+
fillval = np.nan
|
|
419
|
+
else:
|
|
420
|
+
fillval = float(self._fillval)
|
|
421
|
+
self._out_img = np.full(out_shape, fillval, dtype=np.float32)
|
|
417
422
|
else:
|
|
418
423
|
self._out_img = out_img
|
|
419
424
|
|
|
@@ -548,7 +553,7 @@ class Drizzle:
|
|
|
548
553
|
|
|
549
554
|
self._alloc_output_arrays(
|
|
550
555
|
out_shape=self._out_shape,
|
|
551
|
-
max_ctx_id=
|
|
556
|
+
max_ctx_id=self._max_ctx_id,
|
|
552
557
|
out_img=None,
|
|
553
558
|
out_wht=None,
|
|
554
559
|
out_ctx=None,
|
drizzle/tests/helpers.py
CHANGED
|
@@ -56,40 +56,71 @@ def wcs_from_file(filename, ext=None, return_data=False, crpix_shift=None,
|
|
|
56
56
|
"""
|
|
57
57
|
full_file_name = os.path.join(DATA_DIR, filename)
|
|
58
58
|
path = os.path.join(DATA_DIR, full_file_name)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
59
|
+
|
|
60
|
+
def get_shape(hdr):
|
|
61
|
+
naxis1 = hdr.get("WCSNAX1", hdr.get("NAXIS1"))
|
|
62
|
+
naxis2 = hdr.get("WCSNAX2", hdr.get("NAXIS2"))
|
|
63
|
+
if naxis1 is None or naxis2 is None:
|
|
64
|
+
return None
|
|
65
|
+
return (naxis2, naxis1)
|
|
66
|
+
|
|
67
|
+
def data_from_hdr(hdr, data=None, shape=None):
|
|
68
|
+
if data is not None:
|
|
69
|
+
return data
|
|
70
|
+
bitpix = hdr.get("BITPIX", -32)
|
|
71
|
+
dtype = fits.hdu.BITPIX2DTYPE[bitpix]
|
|
72
|
+
shape = get_shape(hdr) or shape
|
|
73
|
+
if shape is None:
|
|
74
|
+
return None
|
|
75
|
+
return np.zeros(shape, dtype=dtype)
|
|
76
|
+
|
|
77
|
+
if os.path.splitext(filename)[1] in [".hdr", ".txt"]:
|
|
78
|
+
hdul = None
|
|
79
|
+
hdr = fits.Header.fromfile(
|
|
80
|
+
path,
|
|
81
|
+
sep='\n',
|
|
82
|
+
endcard=False,
|
|
83
|
+
padding=False
|
|
84
|
+
)
|
|
85
|
+
|
|
86
|
+
else:
|
|
87
|
+
with fits.open(path) as fits_hdul:
|
|
88
|
+
hdul = fits.HDUList([hdu.copy() for hdu in fits_hdul])
|
|
89
|
+
|
|
90
|
+
if ext is None and hdul is not None:
|
|
91
|
+
for k, u in enumerate(hdul):
|
|
62
92
|
if "CTYPE1" in u.header:
|
|
63
93
|
ext = k
|
|
64
94
|
break
|
|
65
95
|
|
|
66
|
-
hdr =
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
96
|
+
hdr = hdul[ext].header
|
|
97
|
+
|
|
98
|
+
if crpix_shift is not None and "CRPIX1" in hdr:
|
|
99
|
+
hdr["CRPIX1"] += crpix_shift[0]
|
|
100
|
+
hdr["CRPIX2"] += crpix_shift[1]
|
|
101
|
+
|
|
102
|
+
result = fits_wcs.WCS(hdr, hdul)
|
|
103
|
+
shape = get_shape(hdr)
|
|
104
|
+
result.array_shape = shape
|
|
105
|
+
|
|
106
|
+
if wcs_type == "gwcs":
|
|
107
|
+
result = _gwcs_from_hst_fits_wcs(result)
|
|
108
|
+
|
|
109
|
+
if return_data:
|
|
110
|
+
if hdul is None:
|
|
111
|
+
data = data_from_hdr(hdr, data=None, shape=shape)
|
|
112
|
+
return (result, data)
|
|
113
|
+
|
|
114
|
+
result = (result, )
|
|
115
|
+
if not isinstance(return_data, (list, tuple)):
|
|
116
|
+
return_data = [ext]
|
|
117
|
+
for ext in return_data:
|
|
118
|
+
data = data_from_hdr(
|
|
119
|
+
hdul[ext].header,
|
|
120
|
+
data=hdul[ext].data,
|
|
121
|
+
shape=shape
|
|
122
|
+
)
|
|
123
|
+
result = result + (data, )
|
|
93
124
|
|
|
94
125
|
return result
|
|
95
126
|
|
drizzle/tests/test_resample.py
CHANGED
|
@@ -5,6 +5,7 @@ import numpy as np
|
|
|
5
5
|
import pytest
|
|
6
6
|
|
|
7
7
|
from astropy import wcs
|
|
8
|
+
from astropy.convolution import Gaussian2DKernel
|
|
8
9
|
from drizzle import cdrizzle, resample, utils
|
|
9
10
|
|
|
10
11
|
from .helpers import wcs_from_file
|
|
@@ -191,6 +192,57 @@ def make_grid_image(shape, spacing, value):
|
|
|
191
192
|
return output_image
|
|
192
193
|
|
|
193
194
|
|
|
195
|
+
@pytest.fixture(scope="module")
|
|
196
|
+
def nrcb5_stars():
|
|
197
|
+
full_file_name = os.path.join(DATA_DIR, "nrcb5_sip_wcs.hdr")
|
|
198
|
+
path = os.path.join(DATA_DIR, full_file_name)
|
|
199
|
+
|
|
200
|
+
wcs, data = wcs_from_file(path, return_data=True)
|
|
201
|
+
dq = np.zeros(data.shape, dtype=np.int32)
|
|
202
|
+
wht = np.zeros(data.shape, dtype=np.float32)
|
|
203
|
+
np.random.seed(0)
|
|
204
|
+
|
|
205
|
+
patch_size = 21
|
|
206
|
+
p2 = patch_size // 2
|
|
207
|
+
# add border so that resampled partial pixels can be isolated
|
|
208
|
+
# in the segmentation:
|
|
209
|
+
border = 4
|
|
210
|
+
pwb = patch_size + border
|
|
211
|
+
|
|
212
|
+
fwhm2sigma = 2.0 * math.sqrt(2.0 * math.log(2.0))
|
|
213
|
+
|
|
214
|
+
ny, nx = data.shape
|
|
215
|
+
|
|
216
|
+
stars = []
|
|
217
|
+
|
|
218
|
+
for yc in range(border + p2, ny - pwb, pwb):
|
|
219
|
+
for xc in range(border + p2, nx - pwb, pwb):
|
|
220
|
+
sl = np.s_[yc - p2:yc + p2 + 1, xc - p2:xc + p2 + 1]
|
|
221
|
+
flux = 1.0 + 99.0 * np.random.random()
|
|
222
|
+
if np.random.random() > 0.7:
|
|
223
|
+
# uniform image
|
|
224
|
+
psf = np.full((patch_size, patch_size), flux)
|
|
225
|
+
else:
|
|
226
|
+
# "star":
|
|
227
|
+
fwhm = 1.5 + 1.5 * np.random.random()
|
|
228
|
+
sigma = fwhm / fwhm2sigma
|
|
229
|
+
|
|
230
|
+
psf = flux * Gaussian2DKernel(
|
|
231
|
+
sigma,
|
|
232
|
+
x_size=patch_size,
|
|
233
|
+
y_size=patch_size
|
|
234
|
+
).array
|
|
235
|
+
weight = 0.6 + 0.4 * np.random.random((patch_size, patch_size))
|
|
236
|
+
wflux = (psf * weight).sum()
|
|
237
|
+
|
|
238
|
+
data[sl] = psf
|
|
239
|
+
wht[sl] = weight
|
|
240
|
+
dq[sl] = 0
|
|
241
|
+
stars.append((xc, yc, wflux, sl))
|
|
242
|
+
|
|
243
|
+
return data, wht, dq, stars, wcs
|
|
244
|
+
|
|
245
|
+
|
|
194
246
|
def test_drizzle_defaults():
|
|
195
247
|
n = 200
|
|
196
248
|
in_shape = (n, n)
|
|
@@ -821,6 +873,50 @@ def test_flux_conservation_distorted(kernel, fc):
|
|
|
821
873
|
)
|
|
822
874
|
|
|
823
875
|
|
|
876
|
+
@pytest.mark.parametrize("kernel", ["square", "turbo", "point"])
|
|
877
|
+
@pytest.mark.parametrize("pscale_ratio", [0.55, 1.0, 1.2])
|
|
878
|
+
def test_flux_conservation_distorted_distributed_sources(nrcb5_stars, kernel, pscale_ratio):
|
|
879
|
+
""" test aperture photometry """
|
|
880
|
+
insci, inwht, dq, stars, wcs = nrcb5_stars
|
|
881
|
+
|
|
882
|
+
suffix = f"{pscale_ratio}".replace(".", "p")
|
|
883
|
+
output_wcs = wcs_from_file(f"nrcb5_output_wcs_psr_{suffix}.hdr")
|
|
884
|
+
|
|
885
|
+
pixmap = utils.calc_pixmap(
|
|
886
|
+
wcs,
|
|
887
|
+
output_wcs,
|
|
888
|
+
wcs.array_shape,
|
|
889
|
+
)
|
|
890
|
+
|
|
891
|
+
driz = resample.Drizzle(
|
|
892
|
+
kernel=kernel,
|
|
893
|
+
out_shape=output_wcs.array_shape,
|
|
894
|
+
fillval=0.0,
|
|
895
|
+
)
|
|
896
|
+
driz.add_image(
|
|
897
|
+
insci,
|
|
898
|
+
exptime=1.0,
|
|
899
|
+
pixmap=pixmap,
|
|
900
|
+
weight_map=inwht,
|
|
901
|
+
scale=1,
|
|
902
|
+
)
|
|
903
|
+
|
|
904
|
+
# for efficiency, instead of doing this patch-by-patch,
|
|
905
|
+
# multiply resampled data by resampled image weight
|
|
906
|
+
out_data = driz.out_img * driz.out_wht
|
|
907
|
+
|
|
908
|
+
dim3 = (slice(None, None, None), )
|
|
909
|
+
for _, _, fin, sl in stars:
|
|
910
|
+
xyout = pixmap[sl + dim3]
|
|
911
|
+
xmin = int(np.floor(xyout[:, :, 0].min() - 0.5))
|
|
912
|
+
xmax = int(np.ceil(xyout[:, :, 0].max() + 1.5))
|
|
913
|
+
ymin = int(np.floor(xyout[:, :, 1].min() - 0.5))
|
|
914
|
+
ymax = int(np.ceil(xyout[:, :, 1].max() + 1.5))
|
|
915
|
+
fout = np.nansum(out_data[ymin:ymax, xmin:xmax])
|
|
916
|
+
|
|
917
|
+
assert np.allclose(fin, fout, rtol=1.0e-6, atol=0.0)
|
|
918
|
+
|
|
919
|
+
|
|
824
920
|
def test_drizzle_exptime():
|
|
825
921
|
n = 200
|
|
826
922
|
in_shape = (n, n)
|
|
@@ -1098,3 +1194,32 @@ def test_resample_inconsistent_output():
|
|
|
1098
1194
|
out_wht=out_wht,
|
|
1099
1195
|
)
|
|
1100
1196
|
assert str(err_info.value).startswith("Inconsistent data shapes specified")
|
|
1197
|
+
|
|
1198
|
+
|
|
1199
|
+
def test_resample_disable_ctx():
|
|
1200
|
+
n = 20
|
|
1201
|
+
in_shape = (n, n)
|
|
1202
|
+
|
|
1203
|
+
pixmap = np.dstack(np.indices(in_shape, dtype=np.float64)[::-1])
|
|
1204
|
+
|
|
1205
|
+
# simulate constant data:
|
|
1206
|
+
in_sci = np.ones(in_shape, dtype=np.float32)
|
|
1207
|
+
|
|
1208
|
+
driz = resample.Drizzle(
|
|
1209
|
+
disable_ctx=True,
|
|
1210
|
+
)
|
|
1211
|
+
|
|
1212
|
+
driz.add_image(in_sci, exptime=1.0, pixmap=pixmap)
|
|
1213
|
+
|
|
1214
|
+
|
|
1215
|
+
@pytest.mark.parametrize(
|
|
1216
|
+
"fillval", ["NaN", "INDEF", "", None]
|
|
1217
|
+
)
|
|
1218
|
+
def test_nan_fillval(fillval):
|
|
1219
|
+
driz = resample.Drizzle(
|
|
1220
|
+
kernel='square',
|
|
1221
|
+
fillval=fillval,
|
|
1222
|
+
out_shape=(20, 20)
|
|
1223
|
+
)
|
|
1224
|
+
|
|
1225
|
+
assert np.all(np.isnan(driz.out_img))
|
drizzle/tests/test_utils.py
CHANGED
|
@@ -2,6 +2,7 @@ import numpy as np
|
|
|
2
2
|
import pytest
|
|
3
3
|
from numpy.testing import assert_almost_equal, assert_equal
|
|
4
4
|
|
|
5
|
+
from drizzle.tests.helpers import wcs_from_file
|
|
5
6
|
from drizzle.utils import (
|
|
6
7
|
_estimate_pixel_scale,
|
|
7
8
|
calc_pixmap,
|
|
@@ -9,8 +10,6 @@ from drizzle.utils import (
|
|
|
9
10
|
estimate_pixel_scale_ratio,
|
|
10
11
|
)
|
|
11
12
|
|
|
12
|
-
from .helpers import wcs_from_file
|
|
13
|
-
|
|
14
13
|
|
|
15
14
|
def test_map_rectangular():
|
|
16
15
|
"""
|
drizzle/utils.py
CHANGED
|
@@ -96,7 +96,7 @@ def calc_pixmap(wcs_from, wcs_to, shape=None, disable_bbox="to"):
|
|
|
96
96
|
bbox_from = (bbox_from, )
|
|
97
97
|
if nd > 1:
|
|
98
98
|
shape = tuple(
|
|
99
|
-
|
|
99
|
+
math.ceil(lim[1] + 0.5) for lim in bbox_from[::-1]
|
|
100
100
|
)
|
|
101
101
|
|
|
102
102
|
if shape is None:
|
|
@@ -1,40 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: drizzle
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: A package for combining dithered images into a single image
|
|
5
5
|
Author-email: STScI <help@stsci.edu>
|
|
6
|
-
License: Copyright (C) 2011,2014 Association of Universities for Research in
|
|
7
|
-
Astronomy (AURA)
|
|
8
|
-
|
|
9
|
-
Redistribution and use in source and binary forms, with or without
|
|
10
|
-
modification, are permitted provided that the following conditions
|
|
11
|
-
are met:
|
|
12
|
-
|
|
13
|
-
1. Redistributions of source code must retain the above
|
|
14
|
-
copyright notice, this list of conditions and the following
|
|
15
|
-
disclaimer.
|
|
16
|
-
|
|
17
|
-
2. Redistributions in binary form must reproduce the above
|
|
18
|
-
copyright notice, this list of conditions and the following
|
|
19
|
-
disclaimer in the documentation and/or other materials
|
|
20
|
-
provided with the distribution.
|
|
21
|
-
|
|
22
|
-
3. The name of AURA and its representatives may not be used to
|
|
23
|
-
endorse or promote products derived from this software without
|
|
24
|
-
specific prior written permission.
|
|
25
|
-
|
|
26
|
-
THIS SOFTWARE IS PROVIDED BY AURA ``AS IS'' AND ANY EXPRESS OR
|
|
27
|
-
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
28
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
29
|
-
ARE DISCLAIMED. IN NO EVENT SHALL AURA BE LIABLE FOR ANY DIRECT,
|
|
30
|
-
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
31
|
-
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
32
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
33
|
-
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
34
|
-
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
35
|
-
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
36
|
-
OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
37
|
-
|
|
38
6
|
Project-URL: Homepage, https://github.com/spacetelescope/drizzle
|
|
39
7
|
Project-URL: Bug Tracker, https://github.com/spacetelescope/drizzle/issues
|
|
40
8
|
Project-URL: Documentation, http://spacetelescope.github.io/drizzle/
|
|
@@ -56,6 +24,7 @@ Requires-Dist: sphinx-automodapi; extra == "docs"
|
|
|
56
24
|
Requires-Dist: sphinx-rtd-theme; extra == "docs"
|
|
57
25
|
Requires-Dist: matplotlib; extra == "docs"
|
|
58
26
|
Requires-Dist: pytest-doctestplus; extra == "docs"
|
|
27
|
+
Dynamic: license-file
|
|
59
28
|
|
|
60
29
|
drizzle Documentation
|
|
61
30
|
=====================
|
|
@@ -108,8 +77,8 @@ Requirements
|
|
|
108
77
|
The Drizzle Algorithm
|
|
109
78
|
---------------------
|
|
110
79
|
|
|
111
|
-
This section has been extracted from Chapter
|
|
112
|
-
`The DrizzlePac Handbook <
|
|
80
|
+
This section has been extracted from Chapter 3 of
|
|
81
|
+
`The DrizzlePac Handbook <https://hst-docs.stsci.edu/drizzpac>`_ [Driz2025]_
|
|
113
82
|
|
|
114
83
|
There are a family of linear reconstruction techniques that, at two opposite
|
|
115
84
|
extremes, are represented by the interlacing and shift-and-add techniques, with
|
|
@@ -200,4 +169,4 @@ for identifying cosmic rays in the original image. Blot requires the user
|
|
|
200
169
|
to provide the world coordinate system (WCS)-based transformations in the
|
|
201
170
|
form of a pixel map array as input.
|
|
202
171
|
|
|
203
|
-
.. [
|
|
172
|
+
.. [Driz2025] Anand, G. S., Mack, J., et al., 2025, “The DrizzlePac Handbook”, Version 3.0, (Baltimore: STScI)
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
drizzle-2.1.0.dist-info/RECORD,,
|
|
2
|
+
drizzle-2.1.0.dist-info/WHEEL,sha256=aNQV8Up4rZuRmZ4dQF1gRf2_E64p7eyxNGuFzXK-F6k,137
|
|
3
|
+
drizzle-2.1.0.dist-info/top_level.txt,sha256=MA5uqwTj1sJBi-hCeQj9v3-sZ9nVUTe6bd_zGWTKy5A,8
|
|
4
|
+
drizzle-2.1.0.dist-info/METADATA,sha256=Ib_IPFdMtDc3ZbRl-xNiL9FY6sGg2dmB4ZDlsOpwmlc,8932
|
|
5
|
+
drizzle-2.1.0.dist-info/licenses/LICENSE.rst,sha256=zbEvAxiq9xY9gvf78KeZaARrnOsTcqC9FeOC6tg8VbA,1474
|
|
6
|
+
drizzle/cdrizzle.cpython-310-darwin.so,sha256=fRQFEwHr9V0IdAqp9Vvq7PzHbcnhaeenyQ1xZev7BYw,134768
|
|
7
|
+
drizzle/resample.py,sha256=-uMfJ2AEXfZrAkmi3uq9QOJfZaDx4Em8tOnSYWUVkm8,28450
|
|
8
|
+
drizzle/util.py,sha256=dmaA4MtbUKZa-KTLosDsYG3nuVWCWkqRMCL8zqRf8II,811
|
|
9
|
+
drizzle/__init__.py,sha256=oKjebdSpXrrHeytrwme-CcDlxqSXpED5P8GxUkYLmV0,313
|
|
10
|
+
drizzle/utils.py,sha256=A_N1JpSjqrH7ZlcHphqaeiiCSRzDRqiP7oGrgi-r9eY,10556
|
|
11
|
+
drizzle/tests/test_utils.py,sha256=7Gt4p-ddGqldUGG4NiAP4kGqjnbPL7Mvcc1f1FtFZ5k,7465
|
|
12
|
+
drizzle/tests/test_overlap_calc.py,sha256=HJPdD5waKM7j4iz8qT38mJyCQDVtb8CzGfgRUpjFQIk,6800
|
|
13
|
+
drizzle/tests/test_cdrizzle.py,sha256=KnK6l8CZ7HxGx2OlziYtAsOMka3PebP-sLJuOIOMTAw,697
|
|
14
|
+
drizzle/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
drizzle/tests/test_resample.py,sha256=9Pd0wpnjov4265eVnF5UOl8_5kyzy0jKyEx0ZR4gFJE,34094
|
|
16
|
+
drizzle/tests/helpers.py,sha256=gFhCa68Ev0nX_oMNlf7gn60F6146jyUCMzu5vXGkhTU,6452
|
drizzle-2.0.1.dist-info/RECORD
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
drizzle-2.0.1.dist-info/RECORD,,
|
|
2
|
-
drizzle-2.0.1.dist-info/WHEEL,sha256=7ffzAg6B9jNsI5fzXAu6JnblIkGEPEYZBaLviKorHoo,110
|
|
3
|
-
drizzle-2.0.1.dist-info/LICENSE.rst,sha256=zbEvAxiq9xY9gvf78KeZaARrnOsTcqC9FeOC6tg8VbA,1474
|
|
4
|
-
drizzle-2.0.1.dist-info/top_level.txt,sha256=MA5uqwTj1sJBi-hCeQj9v3-sZ9nVUTe6bd_zGWTKy5A,8
|
|
5
|
-
drizzle-2.0.1.dist-info/METADATA,sha256=Gdz6feRphBOFDmd0DPNR6Kw5E17xJFxXOyzhp5X_ZDo,10691
|
|
6
|
-
drizzle/cdrizzle.cpython-310-darwin.so,sha256=_-MsWUpSZmrKprnFIIXliXvB-vrh6IXNZLhI8YSxLJo,134536
|
|
7
|
-
drizzle/resample.py,sha256=mm1g_AiLhIS4Rz3ksqSyRr9g7V-Rjv8CribzMSs6sM0,28280
|
|
8
|
-
drizzle/util.py,sha256=dmaA4MtbUKZa-KTLosDsYG3nuVWCWkqRMCL8zqRf8II,811
|
|
9
|
-
drizzle/__init__.py,sha256=oKjebdSpXrrHeytrwme-CcDlxqSXpED5P8GxUkYLmV0,313
|
|
10
|
-
drizzle/utils.py,sha256=RTDJgedsN2vS1ngdf0r3dmq-xyQi1h-fq6DbKnqNSc8,10561
|
|
11
|
-
drizzle/tests/test_utils.py,sha256=G6TzJSILzZCqgpkQwvSzyO5SLfEjR8aQbLiUE2TlTd4,7453
|
|
12
|
-
drizzle/tests/test_overlap_calc.py,sha256=HJPdD5waKM7j4iz8qT38mJyCQDVtb8CzGfgRUpjFQIk,6800
|
|
13
|
-
drizzle/tests/test_cdrizzle.py,sha256=KnK6l8CZ7HxGx2OlziYtAsOMka3PebP-sLJuOIOMTAw,697
|
|
14
|
-
drizzle/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
drizzle/tests/test_resample.py,sha256=lP4xia9O9EoPoZhFIopcr82WKMEuhftPg6ipRFDY5Zg,30500
|
|
16
|
-
drizzle/tests/helpers.py,sha256=EpErKWlt7agxPODzGHZgmr08A1Ou1LTsHXTMtmzpwqM,5697
|
|
File without changes
|
|
File without changes
|