water-column-sonar-processing 0.0.4__py3-none-any.whl → 0.0.5__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.
Potentially problematic release.
This version of water-column-sonar-processing might be problematic. Click here for more details.
- {aws_manager → water_column_sonar_processing/aws}/dynamodb_manager.py +1 -1
- {aws_manager → water_column_sonar_processing/aws}/s3_manager.py +11 -11
- {cruise → water_column_sonar_processing/cruise}/create_empty_zarr_store.py +13 -13
- {cruise → water_column_sonar_processing/cruise}/resample_regrid.py +9 -9
- {geometry_manager → water_column_sonar_processing/geometry}/geometry_manager.py +2 -2
- {geometry_manager → water_column_sonar_processing/geometry}/pmtile_generation.py +1 -1
- {index_manager → water_column_sonar_processing/index}/index_manager.py +2 -2
- {zarr_manager → water_column_sonar_processing/model}/zarr_manager.py +8 -10
- model.py → water_column_sonar_processing/process.py +6 -6
- {utility → water_column_sonar_processing/utility}/cleaner.py +2 -2
- {water_column_sonar_processing-0.0.4.dist-info → water_column_sonar_processing-0.0.5.dist-info}/METADATA +1 -1
- water_column_sonar_processing-0.0.5.dist-info/RECORD +29 -0
- water_column_sonar_processing-0.0.5.dist-info/top_level.txt +1 -0
- water_column_sonar_processing-0.0.4.dist-info/RECORD +0 -29
- water_column_sonar_processing-0.0.4.dist-info/top_level.txt +0 -8
- /__init__.py → /water_column_sonar_processing/__init__.py +0 -0
- {aws_manager → water_column_sonar_processing/aws}/__init__.py +0 -0
- {aws_manager → water_column_sonar_processing/aws}/s3fs_manager.py +0 -0
- {aws_manager → water_column_sonar_processing/aws}/sns_manager.py +0 -0
- {aws_manager → water_column_sonar_processing/aws}/sqs_manager.py +0 -0
- {cruise → water_column_sonar_processing/cruise}/__init__.py +0 -0
- {geometry_manager → water_column_sonar_processing/geometry}/__init__.py +0 -0
- {geometry_manager → water_column_sonar_processing/geometry}/geometry_simplification.py +0 -0
- {index_manager → water_column_sonar_processing/index}/__init__.py +0 -0
- {utility → water_column_sonar_processing/model}/__init__.py +0 -0
- {zarr_manager → water_column_sonar_processing/utility}/__init__.py +0 -0
- {utility → water_column_sonar_processing/utility}/constants.py +0 -0
- {utility → water_column_sonar_processing/utility}/pipeline_status.py +0 -0
- {utility → water_column_sonar_processing/utility}/timestamp.py +0 -0
- {water_column_sonar_processing-0.0.4.dist-info → water_column_sonar_processing-0.0.5.dist-info}/LICENSE +0 -0
- {water_column_sonar_processing-0.0.4.dist-info → water_column_sonar_processing-0.0.5.dist-info}/WHEEL +0 -0
|
@@ -23,7 +23,7 @@ class DynamoDBManager:
|
|
|
23
23
|
self.type_deserializer = TypeDeserializer()
|
|
24
24
|
|
|
25
25
|
#####################################################################
|
|
26
|
-
### defined in raw-to-
|
|
26
|
+
### defined in raw-to-model, not used
|
|
27
27
|
# def put_item(
|
|
28
28
|
# self,
|
|
29
29
|
# table_name,
|
|
@@ -139,12 +139,12 @@ class S3Manager:
|
|
|
139
139
|
return all_uploads
|
|
140
140
|
|
|
141
141
|
#####################################################################
|
|
142
|
-
def upload_zarr_files_to_bucket( # noaa-wcsd-
|
|
142
|
+
def upload_zarr_files_to_bucket( # noaa-wcsd-model-pds
|
|
143
143
|
self,
|
|
144
144
|
local_directory,
|
|
145
145
|
remote_directory,
|
|
146
146
|
):
|
|
147
|
-
# Right now this is just for uploading a
|
|
147
|
+
# Right now this is just for uploading a model store to s3
|
|
148
148
|
print('Uploading files to output bucket.')
|
|
149
149
|
store_name = os.path.basename(local_directory)
|
|
150
150
|
all_files = []
|
|
@@ -162,8 +162,8 @@ class S3Manager:
|
|
|
162
162
|
return all_uploads
|
|
163
163
|
|
|
164
164
|
#####################################################################
|
|
165
|
-
# used: raw-to-
|
|
166
|
-
def list_objects( # noaa-wcsd-pds and noaa-wcsd-
|
|
165
|
+
# used: raw-to-model
|
|
166
|
+
def list_objects( # noaa-wcsd-pds and noaa-wcsd-model-pds
|
|
167
167
|
self,
|
|
168
168
|
bucket_name,
|
|
169
169
|
prefix
|
|
@@ -179,7 +179,7 @@ class S3Manager:
|
|
|
179
179
|
keys.extend([k['Key'] for k in page['Contents']])
|
|
180
180
|
return keys
|
|
181
181
|
|
|
182
|
-
def list_nodd_objects( # These are used by the
|
|
182
|
+
def list_nodd_objects( # These are used by the geometry for uploading data
|
|
183
183
|
self,
|
|
184
184
|
prefix,
|
|
185
185
|
):
|
|
@@ -250,8 +250,8 @@ class S3Manager:
|
|
|
250
250
|
return raw_files
|
|
251
251
|
|
|
252
252
|
#####################################################################
|
|
253
|
-
def get_object( # TODO: Move this to
|
|
254
|
-
# noaa-wcsd-pds or noaa-wcsd-
|
|
253
|
+
def get_object( # TODO: Move this to index.py
|
|
254
|
+
# noaa-wcsd-pds or noaa-wcsd-model-pds
|
|
255
255
|
self,
|
|
256
256
|
bucket_name,
|
|
257
257
|
key_name,
|
|
@@ -272,9 +272,9 @@ class S3Manager:
|
|
|
272
272
|
return response
|
|
273
273
|
|
|
274
274
|
#####################################################################
|
|
275
|
-
# used raw-to-
|
|
275
|
+
# used raw-to-model
|
|
276
276
|
def download_file( # TODO: change to download_object
|
|
277
|
-
# noaa-wcsd-pds or noaa-wcsd-
|
|
277
|
+
# noaa-wcsd-pds or noaa-wcsd-model-pds
|
|
278
278
|
self,
|
|
279
279
|
bucket_name,
|
|
280
280
|
key,
|
|
@@ -289,7 +289,7 @@ class S3Manager:
|
|
|
289
289
|
|
|
290
290
|
#####################################################################
|
|
291
291
|
# not used
|
|
292
|
-
# def delete_nodd_object( # noaa-wcsd-
|
|
292
|
+
# def delete_nodd_object( # noaa-wcsd-model-pds
|
|
293
293
|
# self,
|
|
294
294
|
# bucket_name,
|
|
295
295
|
# key
|
|
@@ -319,7 +319,7 @@ class S3Manager:
|
|
|
319
319
|
|
|
320
320
|
#####################################################################
|
|
321
321
|
# not used TODO: remove
|
|
322
|
-
def put( # noaa-wcsd-
|
|
322
|
+
def put( # noaa-wcsd-model-pds
|
|
323
323
|
self,
|
|
324
324
|
bucket_name,
|
|
325
325
|
key,
|
|
@@ -2,17 +2,17 @@ import os
|
|
|
2
2
|
import numcodecs
|
|
3
3
|
import numpy as np
|
|
4
4
|
|
|
5
|
-
from utility.cleaner import Cleaner
|
|
6
|
-
from
|
|
7
|
-
from
|
|
8
|
-
from
|
|
5
|
+
from water_column_sonar_processing.utility.cleaner import Cleaner
|
|
6
|
+
from water_column_sonar_processing.aws.dynamodb_manager import DynamoDBManager
|
|
7
|
+
from water_column_sonar_processing.aws.s3_manager import S3Manager
|
|
8
|
+
from water_column_sonar_processing.model.zarr_manager import ZarrManager
|
|
9
9
|
|
|
10
10
|
numcodecs.blosc.use_threads = False
|
|
11
11
|
numcodecs.blosc.set_nthreads(1)
|
|
12
12
|
|
|
13
13
|
TEMPDIR = "/tmp"
|
|
14
14
|
|
|
15
|
-
# TODO: when ready switch to version 3 of
|
|
15
|
+
# TODO: when ready switch to version 3 of model spec
|
|
16
16
|
# ZARR_V3_EXPERIMENTAL_API = 1
|
|
17
17
|
# creates the latlon data: foo = ep.consolidate.add_location(ds_Sv, echodata)
|
|
18
18
|
|
|
@@ -34,7 +34,7 @@ class CreateEmptyZarrStore:
|
|
|
34
34
|
object_prefix: str,
|
|
35
35
|
cruise_name: str,
|
|
36
36
|
) -> None:
|
|
37
|
-
print('uploading
|
|
37
|
+
print('uploading model store to s3')
|
|
38
38
|
s3_manager = S3Manager()
|
|
39
39
|
#
|
|
40
40
|
print('Starting upload with thread pool executor.')
|
|
@@ -43,8 +43,8 @@ class CreateEmptyZarrStore:
|
|
|
43
43
|
for subdir, dirs, files in os.walk(f"{local_directory}/{cruise_name}.zarr_manager"):
|
|
44
44
|
for file in files:
|
|
45
45
|
local_path = os.path.join(subdir, file)
|
|
46
|
-
# 'level_2/Henry_B._Bigelow/HB0806/EK60/HB0806.
|
|
47
|
-
s3_key = f'{object_prefix}/{cruise_name}.
|
|
46
|
+
# 'level_2/Henry_B._Bigelow/HB0806/EK60/HB0806.model/.zattrs'
|
|
47
|
+
s3_key = f'{object_prefix}/{cruise_name}.model{local_path.split(f"{cruise_name}.model")[-1]}'
|
|
48
48
|
all_files.append([local_path, s3_key])
|
|
49
49
|
#
|
|
50
50
|
# print(all_files)
|
|
@@ -98,10 +98,10 @@ class CreateEmptyZarrStore:
|
|
|
98
98
|
new_width = int(consolidated_zarr_width)
|
|
99
99
|
print(f"new_width: {new_width}")
|
|
100
100
|
#################################################################
|
|
101
|
-
store_name = f"{cruise_name}.
|
|
101
|
+
store_name = f"{cruise_name}.model"
|
|
102
102
|
print(store_name)
|
|
103
103
|
################################################################
|
|
104
|
-
# Delete existing
|
|
104
|
+
# Delete existing model store if it exists
|
|
105
105
|
s3_manager = S3Manager()
|
|
106
106
|
zarr_prefix = os.path.join("level_2", ship_name, cruise_name, sensor_name)
|
|
107
107
|
child_objects = s3_manager.get_child_objects(
|
|
@@ -113,7 +113,7 @@ class CreateEmptyZarrStore:
|
|
|
113
113
|
objects=child_objects,
|
|
114
114
|
)
|
|
115
115
|
################################################################
|
|
116
|
-
# Create new
|
|
116
|
+
# Create new model store
|
|
117
117
|
zarr_manager = ZarrManager()
|
|
118
118
|
new_height = len(zarr_manager.get_depth_values(
|
|
119
119
|
min_echo_range=cruise_min_echo_range,
|
|
@@ -157,11 +157,11 @@ class CreateEmptyZarrStore:
|
|
|
157
157
|
# TODO: update enum in dynamodb
|
|
158
158
|
#################################################################
|
|
159
159
|
except Exception as err:
|
|
160
|
-
print(f"Problem trying to create new cruise
|
|
160
|
+
print(f"Problem trying to create new cruise model store: {err}")
|
|
161
161
|
finally:
|
|
162
162
|
cleaner = Cleaner()
|
|
163
163
|
cleaner.delete_local_files()
|
|
164
|
-
print("Done creating cruise level
|
|
164
|
+
print("Done creating cruise level model store")
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
###########################################################
|
|
@@ -6,16 +6,16 @@ import numpy as np
|
|
|
6
6
|
import xarray as xr
|
|
7
7
|
import pandas as pd
|
|
8
8
|
|
|
9
|
-
from
|
|
10
|
-
from
|
|
11
|
-
from
|
|
9
|
+
from water_column_sonar_processing.aws.dynamodb_manager import DynamoDBManager
|
|
10
|
+
from water_column_sonar_processing.model.zarr_manager import ZarrManager
|
|
11
|
+
from water_column_sonar_processing.geometry.geometry_manager import GeometryManager
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
numcodecs.blosc.use_threads = False
|
|
15
15
|
numcodecs.blosc.set_nthreads(1)
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
# TODO: when ready switch to version 3 of
|
|
18
|
+
# TODO: when ready switch to version 3 of model spec
|
|
19
19
|
# ZARR_V3_EXPERIMENTAL_API = 1
|
|
20
20
|
# creates the latlon data: foo = ep.consolidate.add_location(ds_Sv, echodata)
|
|
21
21
|
|
|
@@ -115,7 +115,7 @@ class ResampleRegrid:
|
|
|
115
115
|
) -> None:
|
|
116
116
|
"""
|
|
117
117
|
The goal here is to interpolate the data against the depth values already populated
|
|
118
|
-
in the existing file level
|
|
118
|
+
in the existing file level model stores. We open the cruise-level store with model for
|
|
119
119
|
read/write operations. We open the file-level store with Xarray to leverage tools for
|
|
120
120
|
resampling and subsetting the data.
|
|
121
121
|
"""
|
|
@@ -124,7 +124,7 @@ class ResampleRegrid:
|
|
|
124
124
|
zarr_manager = ZarrManager()
|
|
125
125
|
# s3_manager = S3Manager()
|
|
126
126
|
geo_manager = GeometryManager()
|
|
127
|
-
# get
|
|
127
|
+
# get model store
|
|
128
128
|
output_zarr_store = zarr_manager.open_s3_zarr_store_with_zarr(
|
|
129
129
|
ship_name=ship_name,
|
|
130
130
|
cruise_name=cruise_name,
|
|
@@ -157,7 +157,7 @@ class ResampleRegrid:
|
|
|
157
157
|
# TODO: filter rows by enum success, filter the dataframe just for enums >= LEVEL_1_PROCESSING
|
|
158
158
|
# df[df['PIPELINE_STATUS'] < PipelineStatus.LEVEL_1_PROCESSING] = np.nan
|
|
159
159
|
|
|
160
|
-
# Get
|
|
160
|
+
# Get index from all cruise files. Note: should be based on which are included in cruise.
|
|
161
161
|
index = cruise_df.index[cruise_df['FILE_NAME'] == f"{file_name_stem}.raw"][0]
|
|
162
162
|
|
|
163
163
|
# get input store
|
|
@@ -169,7 +169,7 @@ class ResampleRegrid:
|
|
|
169
169
|
)
|
|
170
170
|
#########################################################################
|
|
171
171
|
# [3] Get needed indices
|
|
172
|
-
# Offset from start
|
|
172
|
+
# Offset from start index to insert new data. Note that missing values are excluded.
|
|
173
173
|
ping_time_cumsum = np.insert(
|
|
174
174
|
np.cumsum(cruise_df['NUM_PING_TIME_DROPNA'].dropna().to_numpy(dtype=int)),
|
|
175
175
|
obj=0,
|
|
@@ -223,7 +223,7 @@ class ResampleRegrid:
|
|
|
223
223
|
print(f"start_ping_time_index: {start_ping_time_index}, end_ping_time_index: {end_ping_time_index}")
|
|
224
224
|
|
|
225
225
|
#########################################################################
|
|
226
|
-
# write Sv values to cruise-level-
|
|
226
|
+
# write Sv values to cruise-level-model-store
|
|
227
227
|
for channel in range(len(input_xr.channel.values)): # doesn't like being written in one fell swoop :(
|
|
228
228
|
output_zarr_store.Sv[
|
|
229
229
|
:,
|
|
@@ -3,8 +3,8 @@ import numpy as np
|
|
|
3
3
|
import geopandas
|
|
4
4
|
import pandas as pd
|
|
5
5
|
|
|
6
|
-
from utility.cleaner import Cleaner
|
|
7
|
-
from
|
|
6
|
+
from water_column_sonar_processing.utility.cleaner import Cleaner
|
|
7
|
+
from water_column_sonar_processing.aws.s3_manager import S3Manager
|
|
8
8
|
|
|
9
9
|
"""
|
|
10
10
|
// [Decimal / Places / Degrees / Object that can be recognized at scale / N/S or E/W at equator, E/W at 23N/S, E/W at 45N/S, E/W at 67N/S]
|
|
@@ -23,7 +23,7 @@ class PMTileGeneration(object):
|
|
|
23
23
|
|
|
24
24
|
#######################################################
|
|
25
25
|
def generate_geojson_feature_collection(self):
|
|
26
|
-
# This was used to read from noaa-wcsd-
|
|
26
|
+
# This was used to read from noaa-wcsd-model-pds bucket geojson files and then to
|
|
27
27
|
# generate the geopandas dataframe which could be exported to another comprehensive
|
|
28
28
|
# geojson file. That
|
|
29
29
|
result = list(Path("/Users/r2d2/Documents/echofish/geojson").rglob("*.json"))
|
|
@@ -4,7 +4,7 @@ import pandas as pd
|
|
|
4
4
|
from datetime import datetime
|
|
5
5
|
from concurrent.futures import ThreadPoolExecutor
|
|
6
6
|
from concurrent.futures import as_completed
|
|
7
|
-
from
|
|
7
|
+
from water_column_sonar_processing.aws.s3_manager import S3Manager
|
|
8
8
|
|
|
9
9
|
class IndexManager:
|
|
10
10
|
|
|
@@ -193,7 +193,7 @@ class IndexManager:
|
|
|
193
193
|
return calibration_statuses
|
|
194
194
|
|
|
195
195
|
#################################################################
|
|
196
|
-
# def
|
|
196
|
+
# def index( # TODO: get rid of this?
|
|
197
197
|
# self
|
|
198
198
|
# ):
|
|
199
199
|
# start_time = datetime.now() # used for benchmarking
|
|
@@ -4,20 +4,18 @@ import numcodecs
|
|
|
4
4
|
import numpy as np
|
|
5
5
|
import xarray as xr
|
|
6
6
|
from numcodecs import Blosc
|
|
7
|
-
|
|
8
|
-
from utility.
|
|
9
|
-
from
|
|
10
|
-
from aws_manager.s3fs_manager import S3FSManager
|
|
7
|
+
from water_column_sonar_processing.utility.constants import Constants, Coordinates
|
|
8
|
+
from water_column_sonar_processing.utility.timestamp import Timestamp
|
|
9
|
+
from water_column_sonar_processing.aws.s3fs_manager import S3FSManager
|
|
11
10
|
|
|
12
11
|
numcodecs.blosc.use_threads = False
|
|
13
12
|
numcodecs.blosc.set_nthreads(1)
|
|
14
13
|
|
|
15
14
|
|
|
16
|
-
# TODO: when ready switch to version 3 of
|
|
15
|
+
# TODO: when ready switch to version 3 of model spec
|
|
17
16
|
# ZARR_V3_EXPERIMENTAL_API = 1
|
|
18
17
|
|
|
19
18
|
# creates the latlon data: foo = ep.consolidate.add_location(ds_Sv, echodata)
|
|
20
|
-
|
|
21
19
|
class ZarrManager:
|
|
22
20
|
#######################################################
|
|
23
21
|
def __init__(
|
|
@@ -37,7 +35,7 @@ class ZarrManager:
|
|
|
37
35
|
max_echo_range: float = 100., # maximum depth measured from whole cruise
|
|
38
36
|
):
|
|
39
37
|
# Gets the set of depth values that will be used when resampling and
|
|
40
|
-
# regridding the data to a cruise level
|
|
38
|
+
# regridding the data to a cruise level model store.
|
|
41
39
|
# Note: returned values do not start at zero.
|
|
42
40
|
print('Getting depth values.')
|
|
43
41
|
all_cruise_depth_values = np.linspace(
|
|
@@ -252,7 +250,7 @@ class ZarrManager:
|
|
|
252
250
|
s3fs_manager = S3FSManager()
|
|
253
251
|
root = f'{self.output_bucket_name}/level_2/{ship_name}/{cruise_name}/{sensor_name}/{cruise_name}.zarr'
|
|
254
252
|
store = s3fs_manager.s3_map(s3_zarr_store_path=root)
|
|
255
|
-
# synchronizer =
|
|
253
|
+
# synchronizer = model.ProcessSynchronizer(f"/tmp/{ship_name}_{cruise_name}.sync")
|
|
256
254
|
cruise_zarr = zarr.open(store=store, mode="r+")
|
|
257
255
|
except Exception as err: # Failure
|
|
258
256
|
print(f'Exception encountered opening Zarr store with Zarr.: {err}')
|
|
@@ -284,12 +282,12 @@ class ZarrManager:
|
|
|
284
282
|
|
|
285
283
|
#######################################################
|
|
286
284
|
# def create_process_synchronizer(self):
|
|
287
|
-
# # TODO: explore
|
|
285
|
+
# # TODO: explore aws redis options
|
|
288
286
|
# pass
|
|
289
287
|
|
|
290
288
|
#######################################################
|
|
291
289
|
# def verify_cruise_store_data(self):
|
|
292
|
-
# # TODO: run a check on a finished
|
|
290
|
+
# # TODO: run a check on a finished model store to ensure that
|
|
293
291
|
# # none of the time, latitude, longitude, or depth values
|
|
294
292
|
# # are NaN.
|
|
295
293
|
# pass
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import os
|
|
2
2
|
import json
|
|
3
3
|
import numpy as np
|
|
4
|
-
from
|
|
5
|
-
from
|
|
6
|
-
from
|
|
7
|
-
from
|
|
4
|
+
from water_column_sonar_processing.aws.s3_manager import S3Manager
|
|
5
|
+
from water_column_sonar_processing.aws.s3fs_manager import S3FSManager
|
|
6
|
+
from water_column_sonar_processing.aws.sns_manager import SNSManager
|
|
7
|
+
from water_column_sonar_processing.aws.dynamodb_manager import DynamoDBManager
|
|
8
8
|
|
|
9
9
|
###########################################################
|
|
10
|
-
class
|
|
10
|
+
class Process:
|
|
11
11
|
#######################################################
|
|
12
12
|
def __init__(
|
|
13
13
|
self,
|
|
@@ -87,7 +87,7 @@ class Model:
|
|
|
87
87
|
':sh': {'S': ship_name},
|
|
88
88
|
':st': {'S': '2006-04-06T11:34:07.288Z'},
|
|
89
89
|
':zb': {'S': 'r2d2-dev-echofish2-118234403147-echofish-dev-output'},
|
|
90
|
-
':zp': {'S': 'level_1/David_Starr_Jordan/DS0604/EK60/DSJ0604-D20060406-T113407.
|
|
90
|
+
':zp': {'S': 'level_1/David_Starr_Jordan/DS0604/EK60/DSJ0604-D20060406-T113407.model'},
|
|
91
91
|
},
|
|
92
92
|
update_expression=(
|
|
93
93
|
'SET '
|
|
@@ -7,9 +7,9 @@ import shutil
|
|
|
7
7
|
class Cleaner:
|
|
8
8
|
@staticmethod
|
|
9
9
|
def delete_local_files(
|
|
10
|
-
file_types=['*.raw*', '*.
|
|
10
|
+
file_types=['*.raw*', '*.model'] # '*.json'
|
|
11
11
|
):
|
|
12
|
-
print('Deleting all local raw and
|
|
12
|
+
print('Deleting all local raw and model files')
|
|
13
13
|
for i in file_types:
|
|
14
14
|
for j in glob.glob(i):
|
|
15
15
|
if os.path.isdir(j):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: water_column_sonar_processing
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: A processing tool for water column sonar data.
|
|
5
5
|
Author-email: Rudy Klucik <rudy.klucik@noaa.gov>
|
|
6
6
|
Project-URL: Homepage, https://github.com/CI-CMG/water-column-sonar-processing
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
water_column_sonar_processing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
water_column_sonar_processing/process.py,sha256=Wu3hcSbsB52gM8bAELKd0n206tdOTfzd3LDpFVCzhYg,5337
|
|
3
|
+
water_column_sonar_processing/aws/__init__.py,sha256=pYvL00VjrwCe9k5jfof2k-nc9IG1N-hy1k95W7VlKOs,162
|
|
4
|
+
water_column_sonar_processing/aws/dynamodb_manager.py,sha256=Z1-fhr2X6B_wIlIHMYPTgvwkhccYn75U2XZYNP2pJvI,5339
|
|
5
|
+
water_column_sonar_processing/aws/s3_manager.py,sha256=IJb8hlMGZr5COs2CbOEZvJvRZHw3UN6cNft20soyqbw,13402
|
|
6
|
+
water_column_sonar_processing/aws/s3fs_manager.py,sha256=k4nW48E0reQwj1t4pe_ybK5kX0H1SHeG8urddHelGZ4,2463
|
|
7
|
+
water_column_sonar_processing/aws/sns_manager.py,sha256=IR5Y3MvwYFjd-eSg4tEjoNyABGxdJb85wOj0I-vckX0,2204
|
|
8
|
+
water_column_sonar_processing/aws/sqs_manager.py,sha256=VQSkxYtdhH4zfZqQl5FiNE2_svczN0hU-UBgbviwvtc,1696
|
|
9
|
+
water_column_sonar_processing/cruise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
water_column_sonar_processing/cruise/create_empty_zarr_store.py,sha256=dkJzNZmD51TSphhWVq9qbO32L54ipXREYwT7DYCek_8,7039
|
|
11
|
+
water_column_sonar_processing/cruise/resample_regrid.py,sha256=-YFSKljnuKqn8PkhmfhDwrQHuvziApJWwS-zU3l0ZO4,11327
|
|
12
|
+
water_column_sonar_processing/geometry/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
water_column_sonar_processing/geometry/geometry_manager.py,sha256=d6uKXsxcVfoDpVqr92YyRemLL9g-VDxCttjadPAKt34,9461
|
|
14
|
+
water_column_sonar_processing/geometry/geometry_simplification.py,sha256=_TCrlxqWlhO05Od3ZB4Sfgob9p3tQr3r1vjseG0qMNQ,3071
|
|
15
|
+
water_column_sonar_processing/geometry/pmtile_generation.py,sha256=sXKFKmSu33bOdPBmW5FHpMsKLf6SFlgv7QznqsJ_Ko4,2791
|
|
16
|
+
water_column_sonar_processing/index/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
water_column_sonar_processing/index/index_manager.py,sha256=novA5ZutVkSU_miC1IYG1OCjUkxLBlbij68o87eCQz0,10732
|
|
18
|
+
water_column_sonar_processing/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
water_column_sonar_processing/model/zarr_manager.py,sha256=zNbrQAtNoszenfoJ6Y9TJzkcAAKJKEf4DXKMHAIdv_c,12452
|
|
20
|
+
water_column_sonar_processing/utility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
water_column_sonar_processing/utility/cleaner.py,sha256=oa6pt--HVrlCx6rSWkTbCQBSAlFushrOPzW4JT5fzTc,601
|
|
22
|
+
water_column_sonar_processing/utility/constants.py,sha256=uTuSyH9YGG8bDd5xNbT4zA5O_lu874C-8m1MRvVppPw,1631
|
|
23
|
+
water_column_sonar_processing/utility/pipeline_status.py,sha256=iRLyzI3gsesyz0I4NukbJwqiRmXgSZBOdB3C1x2eMSg,4185
|
|
24
|
+
water_column_sonar_processing/utility/timestamp.py,sha256=i4ub7ob24edHU2yt4aOmvle_Nmlf1F_9HVGa9TJ5HgM,359
|
|
25
|
+
water_column_sonar_processing-0.0.5.dist-info/LICENSE,sha256=lz4IpJ5_adG3S0ali-WaIpQFVTnEAOucMDQPECUVEYw,1110
|
|
26
|
+
water_column_sonar_processing-0.0.5.dist-info/METADATA,sha256=gQwpPMJaL4v90Nk34OFi1XMM_LX3Yj320JKSYghjDWU,3157
|
|
27
|
+
water_column_sonar_processing-0.0.5.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
28
|
+
water_column_sonar_processing-0.0.5.dist-info/top_level.txt,sha256=aRYU4A7RNBlNrL4vzjytFAir3BNnmOgsvIGKKA36tg4,30
|
|
29
|
+
water_column_sonar_processing-0.0.5.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
water_column_sonar_processing
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
model.py,sha256=r5S-ZZEV1lJdpEU7yzGKD9WIWuRRjaw1d7gdGQoBaTo,5254
|
|
3
|
-
aws_manager/__init__.py,sha256=pYvL00VjrwCe9k5jfof2k-nc9IG1N-hy1k95W7VlKOs,162
|
|
4
|
-
aws_manager/dynamodb_manager.py,sha256=dy2IUqQMlyXbnSGgJWt4ggxUnu2heb_Z2jgueaUkCzQ,5346
|
|
5
|
-
aws_manager/s3_manager.py,sha256=r5CJ0XIvA_i4azFvLF4xKdcCuhKBJRNFOL2luvpIBnM,13481
|
|
6
|
-
aws_manager/s3fs_manager.py,sha256=k4nW48E0reQwj1t4pe_ybK5kX0H1SHeG8urddHelGZ4,2463
|
|
7
|
-
aws_manager/sns_manager.py,sha256=IR5Y3MvwYFjd-eSg4tEjoNyABGxdJb85wOj0I-vckX0,2204
|
|
8
|
-
aws_manager/sqs_manager.py,sha256=VQSkxYtdhH4zfZqQl5FiNE2_svczN0hU-UBgbviwvtc,1696
|
|
9
|
-
cruise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
cruise/create_empty_zarr_store.py,sha256=K_Jfm_7Rt8snBXLQOJOjYilPH3pUXHveql9hay8HvCE,7012
|
|
11
|
-
cruise/resample_regrid.py,sha256=Do6j-OhU8t4n10EkHRSyPC5MfqbAwA829q9S_cd4W1U,11311
|
|
12
|
-
geometry_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
geometry_manager/geometry_manager.py,sha256=tCNatSleMCJhGxLp9H_WYr1MquBU9sBCFWsZ1o0rTL4,9409
|
|
14
|
-
geometry_manager/geometry_simplification.py,sha256=_TCrlxqWlhO05Od3ZB4Sfgob9p3tQr3r1vjseG0qMNQ,3071
|
|
15
|
-
geometry_manager/pmtile_generation.py,sha256=7v1XZKprlNV_fFWXHWD6mn4z0xf21rpUMqj3RLIAgy8,2798
|
|
16
|
-
index_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
index_manager/index_manager.py,sha256=spw3OHAgacr2WsTgCg4VpFbCg-brg6S29fd44xi1Lqc,10718
|
|
18
|
-
utility/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
-
utility/cleaner.py,sha256=QaB1-y7cBYWgZn_H9whYQSpguGcLKN5LZVtfIwMNRvw,615
|
|
20
|
-
utility/constants.py,sha256=uTuSyH9YGG8bDd5xNbT4zA5O_lu874C-8m1MRvVppPw,1631
|
|
21
|
-
utility/pipeline_status.py,sha256=iRLyzI3gsesyz0I4NukbJwqiRmXgSZBOdB3C1x2eMSg,4185
|
|
22
|
-
utility/timestamp.py,sha256=i4ub7ob24edHU2yt4aOmvle_Nmlf1F_9HVGa9TJ5HgM,359
|
|
23
|
-
zarr_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
-
zarr_manager/zarr_manager.py,sha256=QK6M7YJ-wxcxRp3lxAc8mhdUtTplKgE-9WZRyyFYwdw,12408
|
|
25
|
-
water_column_sonar_processing-0.0.4.dist-info/LICENSE,sha256=lz4IpJ5_adG3S0ali-WaIpQFVTnEAOucMDQPECUVEYw,1110
|
|
26
|
-
water_column_sonar_processing-0.0.4.dist-info/METADATA,sha256=PRJRr9pCM25QSMUu5cK-A398FRZJeYchGsqQfzS-3rg,3157
|
|
27
|
-
water_column_sonar_processing-0.0.4.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
28
|
-
water_column_sonar_processing-0.0.4.dist-info/top_level.txt,sha256=l_orjhw-0yuQ3IW_ZgpmaFmAC6ngnS20SYXWqneatVI,86
|
|
29
|
-
water_column_sonar_processing-0.0.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|