-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,011 changed files
with
279 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
[TW_PARAMS] | ||
# all params are in days | ||
trajectory_keep_limit=15 | ||
old_observation_keep_limit=2 | ||
trajectory_2_points_keep_limit=8 | ||
orbit_keep_limit=30 | ||
predict_function_keep_limit=10 | ||
|
||
[ASSOC_PARAMS] | ||
# arcsecond | ||
intra_night_separation=120 | ||
|
||
intra_night_magdiff_limit_same_fid=0.2 | ||
intra_night_magdiff_limit_diff_fid=0.8 | ||
|
||
# deg/day | ||
inter_night_separation=0.3 | ||
|
||
inter_night_magdiff_limit_same_fid=0.1 | ||
inter_night_magdiff_limit_diff_fid=0.5 | ||
|
||
# degree | ||
maximum_angle=1 | ||
|
||
# arcmin | ||
error_radius=15 | ||
|
||
# arcsecond | ||
orbit_assoc_radius=600.0 | ||
|
||
# if true, use dbscan for intra_night associations, use legacy fink_fat otherwise | ||
use_dbscan=False | ||
|
||
# roid_mpc = (True | False) if true load mpc alerts for associations with the fink alert stream. | ||
# load sso candidates otherwise (for fink_fat version >= 1.0) | ||
roid_mpc=True | ||
|
||
[ASSOC_PERF] | ||
store_kd_tree=false | ||
|
||
[SOLVE_ORBIT_PARAMS] | ||
n_triplets=30 | ||
noise_ntrials=20 | ||
prop_epoch=None | ||
orbfit_verbose=3 | ||
|
||
orbfit_limit=6 | ||
cpu_count=1 | ||
ram_dir="" | ||
manager=local[4] | ||
principal=lsst | ||
secret=secret | ||
role=lsst | ||
exec_env='/home/julien.peloton' | ||
driver_memory=4 | ||
executor_memory=16 | ||
max_core=64 | ||
executor_core=8 | ||
orbfit_path=$ORBFIT_HOME | ||
|
||
|
||
[ASSOC_SYSTEM] | ||
tracklets_with_trajectories=true | ||
trajectories_with_new_observations=true | ||
tracklets_with_old_observations=true | ||
new_observations_with_old_observations=true | ||
|
||
[OUTPUT] | ||
association_output_file=fink_fat/test/cli_test/fink_fat_out | ||
|
||
# roid_path_mode = ('local' | 'spark') | ||
roid_path_mode=local | ||
roid_module_output=fink_fat/test/cli_test/roid_module_output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
from pyspark.sql import functions as F | ||
import os | ||
import sys | ||
|
||
from fink_utils.broker.sparkUtils import init_sparksession | ||
from fink_utils.spark.utils import concat_col | ||
|
||
from fink_science.asteroids.processor import roid_catcher | ||
|
||
from fink_fat.command_line.utils_cli import init_cli | ||
from pyspark.sql import SparkSession | ||
|
||
|
||
def addFileToSpark(spark: SparkSession, fitroid_path, orbit_path): | ||
if os.path.exists(orbit_path): | ||
spark.sparkContext.addFile(orbit_path) | ||
if os.path.exists(fitroid_path): | ||
spark.sparkContext.addFile(fitroid_path) | ||
|
||
|
||
if __name__ == "__main__": | ||
datapath = "fink_fat/test/cli_test/small_sso_dataset" | ||
|
||
year, month, day = sys.argv[1:] | ||
config, output_path = init_cli({"--config": "fink_fat/test/cli_test/fitroid_test.conf"}) | ||
|
||
path_orbit = os.path.join(output_path, "orbital.parquet") | ||
path_fit_roid = os.path.join(output_path, "fit_roid.parquet") | ||
|
||
path_sso = os.path.join(datapath, f"year={int(year):04d}/month={int(month):02d}/day={int(day):02d}") | ||
|
||
spark = init_sparksession("fink_fat_roid") | ||
addFileToSpark(spark, path_fit_roid, path_orbit) | ||
|
||
df = spark.read.load(path_sso) | ||
what = ["jd", "magpsf"] | ||
prefix = "c" | ||
what_prefix = [prefix + i for i in what] | ||
for colname in what: | ||
df = concat_col(df, colname, prefix=prefix) | ||
|
||
args = [ | ||
"candidate.ra", | ||
"candidate.dec", | ||
"candidate.jd", | ||
"candidate.magpsf", | ||
"candidate.candid", | ||
"cjd", | ||
"cmagpsf", | ||
"candidate.fid", | ||
"candidate.ndethist", | ||
"candidate.sgscore1", | ||
"candidate.ssdistnr", | ||
"candidate.distpsnr1", | ||
F.lit(float(config["ASSOC_PARAMS"]["error_radius"])), | ||
F.lit(float(config["ASSOC_PARAMS"]["inter_night_magdiff_limit_same_fid"])), | ||
F.lit(float(config["ASSOC_PARAMS"]["inter_night_magdiff_limit_diff_fid"])), | ||
F.lit(int(config["TW_PARAMS"]["orbit_keep_limit"])), | ||
F.lit(float(config["ASSOC_PARAMS"]["orbit_assoc_radius"])), | ||
F.lit(True), | ||
] | ||
df = df.withColumn("ff_roid", roid_catcher(*args)) | ||
df = df.drop(*what_prefix) | ||
|
||
df = df.withColumn("year", F.lit(f"{int(year):04d}")) | ||
df = df.withColumn("month", F.lit(f"{int(month):02d}")) | ||
df = df.withColumn("day", F.lit(f"{int(day):02d}")) | ||
|
||
df.write.partitionBy("year", "month", "day").parquet(config["OUTPUT"]["roid_module_output"]) |
Binary file added
BIN
+356 Bytes
.../month=06/day=01/.part-00006-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+364 Bytes
.../month=06/day=01/.part-00007-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+388 Bytes
.../month=06/day=01/.part-00008-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+392 Bytes
.../month=06/day=01/.part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=01/.part-00011-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+384 Bytes
.../month=06/day=01/.part-00013-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=01/.part-00014-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+424 Bytes
.../month=06/day=01/.part-00015-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=01/.part-00017-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=01/.part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+336 Bytes
.../month=06/day=01/.part-00020-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+336 Bytes
.../month=06/day=01/.part-00021-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+336 Bytes
.../month=06/day=01/.part-00022-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=01/.part-00023-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=01/.part-00025-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+1.09 KB
.../month=06/day=01/.part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+468 Bytes
.../month=06/day=01/.part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+368 Bytes
.../month=06/day=01/.part-00028-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+380 Bytes
.../month=06/day=01/.part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+400 Bytes
.../month=06/day=01/.part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+456 Bytes
.../month=06/day=01/.part-00032-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=01/.part-00034-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+364 Bytes
.../month=06/day=01/.part-00035-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=01/.part-00036-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=01/.part-00038-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+372 Bytes
.../month=06/day=01/.part-00039-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=01/.part-00040-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=01/.part-00042-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+388 Bytes
.../month=06/day=01/.part-00046-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+340 Bytes
.../month=06/day=01/.part-00048-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=01/.part-00051-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+352 Bytes
.../month=06/day=01/.part-00055-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+336 Bytes
.../month=06/day=01/.part-00056-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=01/.part-00058-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+372 Bytes
.../month=06/day=01/.part-00077-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+43.3 KB
...=2021/month=06/day=01/part-00006-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44.2 KB
...=2021/month=06/day=01/part-00007-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.1 KB
...=2021/month=06/day=01/part-00008-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.5 KB
...=2021/month=06/day=01/part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.2 KB
...=2021/month=06/day=01/part-00011-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.5 KB
...=2021/month=06/day=01/part-00013-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.1 KB
...=2021/month=06/day=01/part-00014-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+51.7 KB
...=2021/month=06/day=01/part-00015-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.8 KB
...=2021/month=06/day=01/part-00017-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.1 KB
...=2021/month=06/day=01/part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+40.7 KB
...=2021/month=06/day=01/part-00020-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+40.8 KB
...=2021/month=06/day=01/part-00021-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+40.7 KB
...=2021/month=06/day=01/part-00022-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.3 KB
...=2021/month=06/day=01/part-00023-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.9 KB
...=2021/month=06/day=01/part-00025-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+138 KB
...=2021/month=06/day=01/part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+57 KB
...=2021/month=06/day=01/part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44.6 KB
...=2021/month=06/day=01/part-00028-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.4 KB
...=2021/month=06/day=01/part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.8 KB
...=2021/month=06/day=01/part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+55.7 KB
...=2021/month=06/day=01/part-00032-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.7 KB
...=2021/month=06/day=01/part-00034-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44.3 KB
...=2021/month=06/day=01/part-00035-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.7 KB
...=2021/month=06/day=01/part-00036-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.7 KB
...=2021/month=06/day=01/part-00038-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.3 KB
...=2021/month=06/day=01/part-00039-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.8 KB
...=2021/month=06/day=01/part-00040-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.9 KB
...=2021/month=06/day=01/part-00042-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.5 KB
...=2021/month=06/day=01/part-00046-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.4 KB
...=2021/month=06/day=01/part-00048-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.3 KB
...=2021/month=06/day=01/part-00051-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43 KB
...=2021/month=06/day=01/part-00055-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+40.8 KB
...=2021/month=06/day=01/part-00056-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.3 KB
...=2021/month=06/day=01/part-00058-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.2 KB
...=2021/month=06/day=01/part-00077-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+372 Bytes
.../month=06/day=02/.part-00000-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+396 Bytes
.../month=06/day=02/.part-00005-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+336 Bytes
.../month=06/day=02/.part-00007-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+380 Bytes
.../month=06/day=02/.part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+384 Bytes
.../month=06/day=02/.part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+336 Bytes
.../month=06/day=02/.part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=02/.part-00035-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=02/.part-00044-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+376 Bytes
.../month=06/day=02/.part-00047-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+336 Bytes
.../month=06/day=02/.part-00048-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=02/.part-00051-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=02/.part-00052-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+352 Bytes
.../month=06/day=02/.part-00053-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+45.5 KB
...=2021/month=06/day=02/part-00000-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.1 KB
...=2021/month=06/day=02/part-00005-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+40.8 KB
...=2021/month=06/day=02/part-00007-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.3 KB
...=2021/month=06/day=02/part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47 KB
...=2021/month=06/day=02/part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41 KB
...=2021/month=06/day=02/part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.7 KB
...=2021/month=06/day=02/part-00035-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.3 KB
...=2021/month=06/day=02/part-00044-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.8 KB
...=2021/month=06/day=02/part-00047-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+40.9 KB
...=2021/month=06/day=02/part-00048-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.2 KB
...=2021/month=06/day=02/part-00051-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.2 KB
...=2021/month=06/day=02/part-00052-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.6 KB
...=2021/month=06/day=02/part-00053-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+380 Bytes
.../month=06/day=03/.part-00004-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+396 Bytes
.../month=06/day=03/.part-00005-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+388 Bytes
.../month=06/day=03/.part-00008-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+388 Bytes
.../month=06/day=03/.part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+372 Bytes
.../month=06/day=03/.part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=03/.part-00011-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=03/.part-00013-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+436 Bytes
.../month=06/day=03/.part-00014-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=03/.part-00015-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+368 Bytes
.../month=06/day=03/.part-00016-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+396 Bytes
.../month=06/day=03/.part-00017-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=03/.part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+396 Bytes
.../month=06/day=03/.part-00020-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+392 Bytes
.../month=06/day=03/.part-00021-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+340 Bytes
.../month=06/day=03/.part-00022-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+452 Bytes
.../month=06/day=03/.part-00024-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=03/.part-00025-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+380 Bytes
.../month=06/day=03/.part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+400 Bytes
.../month=06/day=03/.part-00028-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+376 Bytes
.../month=06/day=03/.part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+384 Bytes
.../month=06/day=03/.part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+340 Bytes
.../month=06/day=03/.part-00032-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+396 Bytes
.../month=06/day=03/.part-00033-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+368 Bytes
.../month=06/day=03/.part-00034-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+452 Bytes
.../month=06/day=03/.part-00036-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+444 Bytes
.../month=06/day=03/.part-00037-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+408 Bytes
.../month=06/day=03/.part-00038-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=03/.part-00039-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+396 Bytes
.../month=06/day=03/.part-00042-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=03/.part-00043-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=03/.part-00044-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+404 Bytes
.../month=06/day=03/.part-00049-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+380 Bytes
.../month=06/day=03/.part-00076-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+46.4 KB
...=2021/month=06/day=03/part-00004-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.1 KB
...=2021/month=06/day=03/part-00005-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.4 KB
...=2021/month=06/day=03/part-00008-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.5 KB
...=2021/month=06/day=03/part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.3 KB
...=2021/month=06/day=03/part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.9 KB
...=2021/month=06/day=03/part-00011-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.1 KB
...=2021/month=06/day=03/part-00013-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+53.1 KB
...=2021/month=06/day=03/part-00014-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.9 KB
...=2021/month=06/day=03/part-00015-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44.8 KB
...=2021/month=06/day=03/part-00016-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.1 KB
...=2021/month=06/day=03/part-00017-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.1 KB
...=2021/month=06/day=03/part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.4 KB
...=2021/month=06/day=03/part-00020-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.7 KB
...=2021/month=06/day=03/part-00021-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.2 KB
...=2021/month=06/day=03/part-00022-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+55.1 KB
...=2021/month=06/day=03/part-00024-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.9 KB
...=2021/month=06/day=03/part-00025-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.1 KB
...=2021/month=06/day=03/part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.8 KB
...=2021/month=06/day=03/part-00028-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.5 KB
...=2021/month=06/day=03/part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.9 KB
...=2021/month=06/day=03/part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.1 KB
...=2021/month=06/day=03/part-00032-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.4 KB
...=2021/month=06/day=03/part-00033-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44.9 KB
...=2021/month=06/day=03/part-00034-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+55 KB
...=2021/month=06/day=03/part-00036-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+54.2 KB
...=2021/month=06/day=03/part-00037-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+49.5 KB
...=2021/month=06/day=03/part-00038-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.8 KB
...=2021/month=06/day=03/part-00039-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.2 KB
...=2021/month=06/day=03/part-00042-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.1 KB
...=2021/month=06/day=03/part-00043-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.6 KB
...=2021/month=06/day=03/part-00044-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+49.2 KB
...=2021/month=06/day=03/part-00049-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.3 KB
...=2021/month=06/day=03/part-00076-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+368 Bytes
.../month=06/day=04/.part-00000-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+372 Bytes
.../month=06/day=04/.part-00001-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=04/.part-00002-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+400 Bytes
.../month=06/day=04/.part-00003-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=04/.part-00017-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=04/.part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+400 Bytes
.../month=06/day=04/.part-00021-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+340 Bytes
.../month=06/day=04/.part-00022-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=04/.part-00024-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=04/.part-00025-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+372 Bytes
.../month=06/day=04/.part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=04/.part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+384 Bytes
.../month=06/day=04/.part-00028-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+376 Bytes
.../month=06/day=04/.part-00029-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+372 Bytes
.../month=06/day=04/.part-00033-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=04/.part-00037-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=04/.part-00038-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=04/.part-00039-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=04/.part-00040-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+340 Bytes
.../month=06/day=04/.part-00045-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+44.9 KB
...=2021/month=06/day=04/part-00000-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.3 KB
...=2021/month=06/day=04/part-00001-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.3 KB
...=2021/month=06/day=04/part-00002-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.7 KB
...=2021/month=06/day=04/part-00003-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.7 KB
...=2021/month=06/day=04/part-00017-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.5 KB
...=2021/month=06/day=04/part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.7 KB
...=2021/month=06/day=04/part-00021-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.5 KB
...=2021/month=06/day=04/part-00022-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.2 KB
...=2021/month=06/day=04/part-00024-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.1 KB
...=2021/month=06/day=04/part-00025-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.5 KB
...=2021/month=06/day=04/part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.8 KB
...=2021/month=06/day=04/part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.8 KB
...=2021/month=06/day=04/part-00028-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.6 KB
...=2021/month=06/day=04/part-00029-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.3 KB
...=2021/month=06/day=04/part-00033-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.3 KB
...=2021/month=06/day=04/part-00037-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.5 KB
...=2021/month=06/day=04/part-00038-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.4 KB
...=2021/month=06/day=04/part-00039-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.4 KB
...=2021/month=06/day=04/part-00040-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.4 KB
...=2021/month=06/day=04/part-00045-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+456 Bytes
.../month=06/day=05/.part-00000-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=05/.part-00001-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+420 Bytes
.../month=06/day=05/.part-00002-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+364 Bytes
.../month=06/day=05/.part-00004-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+412 Bytes
.../month=06/day=05/.part-00005-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+380 Bytes
.../month=06/day=05/.part-00006-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=05/.part-00007-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+428 Bytes
.../month=06/day=05/.part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+420 Bytes
.../month=06/day=05/.part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+404 Bytes
.../month=06/day=05/.part-00011-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+400 Bytes
.../month=06/day=05/.part-00012-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+408 Bytes
.../month=06/day=05/.part-00013-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+400 Bytes
.../month=06/day=05/.part-00014-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+364 Bytes
.../month=06/day=05/.part-00015-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+392 Bytes
.../month=06/day=05/.part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+352 Bytes
.../month=06/day=05/.part-00020-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=05/.part-00023-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+412 Bytes
.../month=06/day=05/.part-00024-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+376 Bytes
.../month=06/day=05/.part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+384 Bytes
.../month=06/day=05/.part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+440 Bytes
.../month=06/day=05/.part-00029-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+376 Bytes
.../month=06/day=05/.part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=05/.part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+388 Bytes
.../month=06/day=05/.part-00032-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+356 Bytes
.../month=06/day=05/.part-00058-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=05/.part-00073-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+55.8 KB
...=2021/month=06/day=05/part-00000-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.2 KB
...=2021/month=06/day=05/part-00001-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+51.2 KB
...=2021/month=06/day=05/part-00002-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44.5 KB
...=2021/month=06/day=05/part-00004-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+50 KB
...=2021/month=06/day=05/part-00005-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.2 KB
...=2021/month=06/day=05/part-00006-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.1 KB
...=2021/month=06/day=05/part-00007-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+52.4 KB
...=2021/month=06/day=05/part-00009-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+51.2 KB
...=2021/month=06/day=05/part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+49.3 KB
...=2021/month=06/day=05/part-00011-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+49 KB
...=2021/month=06/day=05/part-00012-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+49.9 KB
...=2021/month=06/day=05/part-00013-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+48.7 KB
...=2021/month=06/day=05/part-00014-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44.1 KB
...=2021/month=06/day=05/part-00015-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.7 KB
...=2021/month=06/day=05/part-00019-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43 KB
...=2021/month=06/day=05/part-00020-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.8 KB
...=2021/month=06/day=05/part-00023-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+50.2 KB
...=2021/month=06/day=05/part-00024-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.8 KB
...=2021/month=06/day=05/part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.8 KB
...=2021/month=06/day=05/part-00027-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+53.5 KB
...=2021/month=06/day=05/part-00029-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+45.5 KB
...=2021/month=06/day=05/part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.1 KB
...=2021/month=06/day=05/part-00031-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47 KB
...=2021/month=06/day=05/part-00032-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.5 KB
...=2021/month=06/day=05/part-00058-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.7 KB
...=2021/month=06/day=05/part-00073-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+396 Bytes
.../month=06/day=06/.part-00001-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+352 Bytes
.../month=06/day=06/.part-00003-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+340 Bytes
.../month=06/day=06/.part-00006-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=06/.part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=06/.part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=06/.part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=06/.part-00034-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+384 Bytes
.../month=06/day=06/.part-00036-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=06/.part-00041-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+380 Bytes
.../month=06/day=06/.part-00042-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=06/.part-00044-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+392 Bytes
.../month=06/day=06/.part-00045-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+364 Bytes
.../month=06/day=06/.part-00046-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+352 Bytes
.../month=06/day=06/.part-00047-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+344 Bytes
.../month=06/day=06/.part-00053-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+360 Bytes
.../month=06/day=06/.part-00055-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+48.4 KB
...=2021/month=06/day=06/part-00001-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.7 KB
...=2021/month=06/day=06/part-00003-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.5 KB
...=2021/month=06/day=06/part-00006-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.9 KB
...=2021/month=06/day=06/part-00010-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.9 KB
...=2021/month=06/day=06/part-00026-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.1 KB
...=2021/month=06/day=06/part-00030-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.9 KB
...=2021/month=06/day=06/part-00034-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.5 KB
...=2021/month=06/day=06/part-00036-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44 KB
...=2021/month=06/day=06/part-00041-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+46.4 KB
...=2021/month=06/day=06/part-00042-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.8 KB
...=2021/month=06/day=06/part-00044-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+47.9 KB
...=2021/month=06/day=06/part-00045-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+44 KB
...=2021/month=06/day=06/part-00046-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+42.8 KB
...=2021/month=06/day=06/part-00047-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+41.6 KB
...=2021/month=06/day=06/part-00053-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+43.8 KB
...=2021/month=06/day=06/part-00055-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet
Binary file not shown.
Binary file added
BIN
+368 Bytes
.../month=06/day=07/.part-00067-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=07/.part-00068-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+348 Bytes
.../month=06/day=07/.part-00069-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+392 Bytes
.../month=06/day=07/.part-00072-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+364 Bytes
.../month=06/day=07/.part-00073-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+368 Bytes
.../month=06/day=07/.part-00074-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+428 Bytes
.../month=06/day=07/.part-00076-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Binary file added
BIN
+440 Bytes
.../month=06/day=07/.part-00077-7d863f65-fc9b-4072-bb52-c1294e0aab8b.c000.snappy.parquet.crc
Binary file not shown.
Oops, something went wrong.