@globalfishingwatch/data-transforms
Advanced tools
Comparing version 1.1.1 to 1.2.0
# @globalfishingwatch/data-transforms | ||
## 1.2.0 | ||
### Minor Changes | ||
- 0ec2156f: User tracks | ||
## 1.1.1 | ||
@@ -4,0 +10,0 @@ |
export * from './track-value-array-to-segments'; | ||
export * from './segments'; | ||
export * from './csv-to-track-segments'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export{D as DEFAULT_NULL_VALUE,F as Field,T as TRACK_FIELDS,t as trackValueArrayToSegments}from"./track-value-array-to-segments-af9d68fd.js";export{f as filterSegmentsByTimerange,s as segmentsToBbox}from"./segments-timerange-filter-4c876aa9.js"; | ||
export{D as DEFAULT_NULL_VALUE,F as Field,T as TRACK_FIELDS,t as trackValueArrayToSegments}from"./track-value-array-to-segments-682cc8f2.js";export{f as filterSegmentsByTimerange,g as geoJSONToSegments,a as segmentsToBbox,s as segmentsToGeoJSON}from"./segments-to-geojson-3a5bd3f1.js";export{c as checkRecordValidity,a as csvToTrackSegments,g as guessColumns}from"./guessColumns-e7305dc4.js"; | ||
//# sourceMappingURL=index.js.map |
export * from './segments-to-bbox'; | ||
export * from './segments-timerange-filter'; | ||
export * from './types'; | ||
export { default as segmentsToGeoJSON, geoJSONToSegments } from './segments-to-geojson'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export{f as filterSegmentsByTimerange,s as segmentsToBbox}from"../segments-timerange-filter-4c876aa9.js"; | ||
export{f as filterSegmentsByTimerange,g as geoJSONToSegments,a as segmentsToBbox,s as segmentsToGeoJSON}from"../segments-to-geojson-3a5bd3f1.js"; | ||
//# sourceMappingURL=index.js.map |
@@ -1,2 +0,2 @@ | ||
export{D as DEFAULT_NULL_VALUE,F as Field,T as TRACK_FIELDS,t as trackValueArrayToSegments}from"../track-value-array-to-segments-af9d68fd.js"; | ||
export{D as DEFAULT_NULL_VALUE,F as Field,T as TRACK_FIELDS,t as trackValueArrayToSegments}from"../track-value-array-to-segments-682cc8f2.js"; | ||
//# sourceMappingURL=index.js.map |
@@ -11,3 +11,4 @@ export declare enum Field { | ||
distanceFromPort = "distance_from_port", | ||
elevation = "elevation" | ||
elevation = "elevation", | ||
id = "id" | ||
} | ||
@@ -14,0 +15,0 @@ export declare type Point = Partial<Record<Field, number | null>>; |
{ | ||
"name": "@globalfishingwatch/data-transforms", | ||
"version": "1.1.1", | ||
"version": "1.2.0", | ||
"description": "Utils to decode various data formats", | ||
@@ -10,2 +10,3 @@ "main": "dist/index.js", | ||
"build": "yarn clean && cross-env NODE_ENV=production rollup -c rollup.config.js", | ||
"test": "jest", | ||
"clean": "rimraf dist/*", | ||
@@ -16,3 +17,16 @@ "prepare": "yarn build", | ||
"devDependencies": { | ||
"@types/geojson": "^7946.0.7" | ||
"@rollup/plugin-commonjs": "^16.0.0", | ||
"@rollup/plugin-json": "^4.1.0", | ||
"@rollup/plugin-node-resolve": "^10.0.0", | ||
"@rollup/plugin-typescript": "^6.1.0", | ||
"@rollup/plugin-url": "^5.0.1", | ||
"@types/geojson": "^7946.0.7", | ||
"@types/jest": "^26.0.22", | ||
"@types/papaparse": "^5.2.5", | ||
"cross-env": "^7.0.3", | ||
"rollup": "^2.33.1", | ||
"rollup-plugin-multi-input": "^1.1.1", | ||
"rollup-plugin-postcss": "^3.1.8", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"ts-jest": "^26.5.4" | ||
}, | ||
@@ -22,3 +36,6 @@ "publishConfig": { | ||
}, | ||
"gitHead": "eb8f800de6b784136eae960c19af422011701313" | ||
"dependencies": { | ||
"papaparse": "^5.3.0" | ||
}, | ||
"gitHead": "dd9006c455eb7ee9f20cbdc62854d9a16bfc94c1" | ||
} |
export * from './track-value-array-to-segments' | ||
export * from './segments' | ||
export * from './csv-to-track-segments' |
export * from './segments-to-bbox' | ||
export * from './segments-timerange-filter' | ||
export * from './types' | ||
export { default as segmentsToGeoJSON, geoJSONToSegments } from './segments-to-geojson' |
@@ -12,2 +12,3 @@ export enum Field { | ||
elevation = 'elevation', | ||
id = 'id', | ||
} | ||
@@ -14,0 +15,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
1411370
65
498
1
14
+ Addedpapaparse@^5.3.0
+ Addedpapaparse@5.5.2(transitive)