Skip to content

Commit

Permalink
licenses
Browse files Browse the repository at this point in the history
  • Loading branch information
ibgreen committed Oct 18, 2024
1 parent ddb3008 commit e6d827e
Show file tree
Hide file tree
Showing 92 changed files with 440 additions and 16 deletions.
7 changes: 6 additions & 1 deletion modules/parquet/src/parquetjs/codecs/declare.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Forked from https://github.com/kbajalc/parquets under MIT license (Copyright (c) 2017 ironSource Ltd.)
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

import {PrimitiveType} from '../schema/declare';

export interface CursorBuffer {
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/codecs/dictionary.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

import {decodeValues as decodeRleValues} from './rle';

export function decodeValues(type, cursor, count, opts) {
Expand Down
7 changes: 6 additions & 1 deletion modules/parquet/src/parquetjs/codecs/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Forked from https://github.com/kbajalc/parquets under MIT license (Copyright (c) 2017 ironSource Ltd.)
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

import type {ParquetCodec} from '../schema/declare';
import type {ParquetCodecKit} from './declare';
import * as PLAIN from './plain';
Expand Down
7 changes: 6 additions & 1 deletion modules/parquet/src/parquetjs/codecs/plain.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Forked from https://github.com/kbajalc/parquets under MIT license (Copyright (c) 2017 ironSource Ltd.)
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* eslint-disable camelcase */
import type {PrimitiveType} from '../schema/declare';
import type {CursorBuffer, ParquetCodecOptions} from './declare';
Expand Down
6 changes: 5 additions & 1 deletion modules/parquet/src/parquetjs/codecs/rle.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
// Forked from https://github.com/kbajalc/parquets under MIT license (Copyright (c) 2017 ironSource Ltd.)
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

import type {PrimitiveType} from '../schema/declare';
import type {CursorBuffer, ParquetCodecOptions} from './declare';
Expand Down
7 changes: 5 additions & 2 deletions modules/parquet/src/parquetjs/compression.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// Forked from https://github.com/kbajalc/parquets under MIT license (Copyright (c) 2017 ironSource Ltd.)
/* eslint-disable camelcase */
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license
// Forked from https://github.com/ironSource/parquetjs under MIT license

import {
Expand Down
7 changes: 6 additions & 1 deletion modules/parquet/src/parquetjs/encoder/parquet-encoder.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Forked from https://github.com/kbajalc/parquets under MIT license (Copyright (c) 2017 ironSource Ltd.)
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* eslint-disable camelcase */
import {stream} from '@loaders.gl/loader-utils';
import {ParquetCodecOptions, PARQUET_CODECS} from '../codecs/index';
Expand Down
6 changes: 5 additions & 1 deletion modules/parquet/src/parquetjs/modules.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
// Forked from https://github.com/kbajalc/parquets under MIT license (Copyright (c) 2017 ironSource Ltd.)
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

declare module 'int53' {
declare function readInt64BE(buffer: Buffer, offset?: number): number;
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/BoundaryOrder.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/BsonType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/ColumnChunk.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/ColumnIndex.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/ColumnOrder.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/ConvertedType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/DateType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/DecimalType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/Encoding.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/EnumType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/FileMetaData.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/IntType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/JsonType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/KeyValue.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/ListType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/LogicalType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/MapType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/MicroSeconds.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/MilliSeconds.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/NullType.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/OffsetIndex.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/PageHeader.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
6 changes: 6 additions & 0 deletions modules/parquet/src/parquetjs/parquet-thrift/PageLocation.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// loaders.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
// Copyright (c) 2017 ironSource Ltd.
// Forked from https://github.com/kbajalc/parquets under MIT license

/* tslint:disable */
/* eslint-disable */
/*
Expand Down
Loading

0 comments on commit e6d827e

Please sign in to comment.