@bicharts/shape-core 0.5.25 → 0.5.27
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.
- package/dist/{chunk-SFNO5FEH.mjs → chunk-4SKRJEPX.mjs} +1 -1
- package/dist/chunk-USLND66G.mjs +2 -0
- package/dist/index.mjs +1 -1
- package/dist/indexedText.mjs +1 -1
- package/dist/ingest.mjs +1 -1
- package/dist/types/index.d.ts +2 -1
- package/dist/types/indexedText.d.ts +7 -0
- package/dist/types/models.d.ts +4 -0
- package/package.json +1 -1
- package/dist/chunk-L2HRDGGX.mjs +0 -2
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! @bicharts/shape-core — Apache-2.0. Bundled reference data: GeoNames (https://www.geonames.org/) CC BY 4.0; US Census/TIGER (public domain). Full text: NOTICE in this package. */
|
|
2
|
-
import{e as w,
|
|
2
|
+
import{e as w,k as b}from"./chunk-USLND66G.mjs";import C from"papaparse";var D=500,S=/^[+-]?\d{1,15}$/,E=/^[+-]?(\d{1,3}(,\d{3})*|\d+)(\.\d+)?([eE][+-]?\d+)?$/,R=/^\d{4}-\d{2}-\d{2}([T ]\d{2}:\d{2}(:\d{2}(\.\d+)?)?(Z|[+-]\d{2}:?\d{2})?)?$/,L=/^\d{1,2}[\/\-.]\d{1,2}[\/\-.]\d{2,4}$/;function I(n){let i=0,e=0,r=0,o=0;for(let a of n){if(a==null)continue;if(typeof a=="number"){o++,e++,Number.isInteger(a)&&i++;continue}if(a instanceof Date){o++,r++;continue}if(typeof a=="boolean"){o++;continue}let c=String(a).trim();if(c!==""){if(o++,S.test(c)){i++,e++;continue}if(E.test(c)){e++;continue}if((R.test(c)||L.test(c))&&!isNaN(Date.parse(c))){r++;continue}}}return o===0?"String":r/o>.9?"DateTime":i===o?"Integer":e===o?"Decimal":"String"}function x(n,i){if(n==null)return null;if(typeof n=="number")return i==="String"?String(n):n;if(n instanceof Date)return i==="DateTime"?n:n.toISOString();if(typeof n=="boolean")return String(n);let e=String(n).trim();if(e==="")return null;switch(i){case"Integer":return S.test(e)?parseInt(e,10):null;case"Decimal":return E.test(e)?parseFloat(e.replace(/,/g,"")):null;case"DateTime":{let r=Date.parse(e);return isNaN(r)?null:new Date(r)}default:return e}}function M(n){let i=(n||"").toLowerCase().replace(/\(.*$/,"").trim();return/^(tinyint|smallint|int|integer|int2|int4|int8|bigint|serial|bigserial)$/.test(i)?"Integer":/^(decimal|numeric|money|smallmoney|float|real|double|double precision|number)$/.test(i)?"Decimal":/^(date|datetime|datetime2|smalldatetime|datetimeoffset|timestamp|timestamptz|time)$/.test(i)?"DateTime":(/^(bit|bool|boolean)$/.test(i),"String")}function g(n,i,e){if(n.length===0)throw new Error("ingest: no columns were resolved from the source. Supply column descriptors, or use a source shape that carries them (grid/table/objects/sql).");let r=n.length,o=n.map((t,s)=>t.dataType??I(i.slice(0,D).map(l=>l?.[s]))),a=new Set((e.measures??[]).map(t=>t.toLowerCase())),c=new Set((e.dimensions??[]).map(t=>t.toLowerCase())),d=new Set((e.nonAdditive??[]).map(t=>t.toLowerCase())),T=n.map((t,s)=>{let l=t.name.toLowerCase(),u=t.isMeasure??((o[s]==="Integer"||o[s]==="Decimal")&&!w(t.name));a.has(l)&&(u=!0),c.has(l)&&(u=!1);let h={name:t.name,dataType:o[s],isMeasure:u};return u&&d.has(l)&&(h.discourageAggregationAcrossGroups=!0),h}),m=new b;m.dedupRows=e.dedup!==!1,m.setColumns(T);for(let t=0;t<i.length;t++){let s=i[t];m.addRow(Array.from({length:r},(l,u)=>x(s?.[u],o[u])),t)}let y=m.getColumnsWithStats(e.privacyLevel??"20",e.locale??"en"),f=new Map(y.map(t=>[t.name,t]));n.forEach(t=>{let s=f.get(t.name);s&&(t.format&&(s.modelFormat=t.format),t.description&&(s.modelDesc=t.description))});for(let[t,s]of Object.entries(e.formats??{})){let l=f.get(t);l&&(l.modelFormat=s)}for(let[t,s]of Object.entries(e.descriptions??{})){let l=f.get(t);l&&(l.modelDesc=s)}for(let t of e.groupBy??[]){let s=f.get(t);s&&(s.isGrouping=!0)}return{columns:y,rows:m.toObjectArray(),totalRows:m.getRowCount(),index:m}}function p(n,i){return n.map(e=>Array.isArray(e)?e:i.map(r=>e[r]))}function A(n,i){let e=[],r=new Set,o=Math.min(n.length,Math.max(1,i));for(let a=0;a<o;a++){let c=n[a];if(!(!c||typeof c!="object"))for(let d of Object.keys(c))r.has(d)||(r.add(d),e.push(d))}return e}function $(n,i={}){switch(n.kind){case"csv":{let e=C.parse(n.text,{skipEmptyLines:!0});if(e.errors?.length&&e.data.length===0)throw new Error(`ingest: CSV parse failed - ${e.errors[0].message}`);let r=e.data;if(r.length<2)throw new Error("ingest: CSV needs a header line plus at least one data row.");let o=r[0].map(a=>(a??"").trim());return g(o.map(a=>({name:a})),r.slice(1),i)}case"grid":{if(!n.header?.length)throw new Error("ingest: 'grid' needs a non-empty header.");return g(n.header.map(e=>({name:(e??"").trim()})),n.rows??[],i)}case"table":{if(!n.columns?.length)throw new Error("ingest: 'table' needs at least one column descriptor.");let e=n.columns.map(r=>r.name);return g(n.columns,p(n.rows??[],e),i)}case"objects":{let e=n.rows??[],r=n.columns?.length?n.columns:A(e,i.columnScanLimit??D).map(o=>({name:o}));if(!r.length)throw new Error("ingest: 'objects' produced no columns - the rows array is empty or holds no object keys.");return g(r,p(e,r.map(o=>o.name)),i)}case"sql":{if(!n.schema?.length)throw new Error("ingest: 'sql' needs at least one schema column.");let e=n.schema.map(r=>{let o=M(r.dataType);return{name:r.name,dataType:o,isMeasure:r.isMeasure,format:r.format,description:r.description}});return g(e,p(n.rows??[],e.map(r=>r.name)),i)}default:{let e=n;throw new Error(`ingest: unknown source kind '${e?.kind}'. Expected one of: csv, grid, table, objects, sql.`)}}}export{M as a,$ as b};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
/*! @bicharts/shape-core — Apache-2.0. Bundled reference data: GeoNames (https://www.geonames.org/) CC BY 4.0; US Census/TIGER (public domain). Full text: NOTICE in this package. */
|
|
2
|
+
import{a as X}from"./chunk-QEH7WTLB.mjs";import{a as j,b as q}from"./chunk-2LR73DNS.mjs";import{a as J,b as Q,c as L}from"./chunk-NWDPA7DG.mjs";import{c as $}from"./chunk-SAASSIJ7.mjs";import{b as Y,f as Z}from"./chunk-E6SVTFAW.mjs";import{a as H,b as k,c as K}from"./chunk-WBEROMBG.mjs";var ae=[[24.4,49.4,-125,-66.9],[51.2,71.5,-168,-129.9],[18.9,22.3,-160.3,-154.8]],ue=[7,72,-172,-52];function ee(a,t,n){return a>=n[0]&&a<=n[1]&&t>=n[2]&&t<=n[3]}function V(a,t){if(!a.length)return NaN;if(a.length===1)return a[0];let n=(a.length-1)*t,r=Math.floor(n),m=Math.ceil(n);return r===m?a[r]:a[r]+(a[m]-a[r])*(n-r)}var w=a=>Math.round(a*10)/10;function ne(a,t=3){let n=[],r=[],m=0,i=0;for(let f of a){let d=f?.lat,g=f?.lon;if(typeof d!="number"||typeof g!="number"||!isFinite(d)||!isFinite(g)||d<-90||d>90||g<-180||g>180)continue;n.push(d),r.push(g);let C=f?.country?String(f.country).trim().toUpperCase():"",b=C?F(C):null;b?((C==="US"||C==="USA")&&m++,b==="north-america"&&i++):(ae.some(A=>ee(d,g,A))&&m++,ee(d,g,ue)&&i++)}let l=n.length;return l<t?null:(n.sort((f,d)=>f-d),r.sort((f,d)=>f-d),{pctUsa:w(m/l*100),pctNa:w(i/l*100),latP5:w(V(n,.05)),latP95:w(V(n,.95)),lonP5:w(V(r,.05)),lonP95:w(V(r,.95)),n:l})}var te={"north-america":"AG AI AW BB BL BM BQ BS BZ CA CR CU CW DM DO GD GL GP GT HN HT JM KN KY LC MF MQ MS MX NI PA PM PR SV SX TC TT US VC VG VI","south-america":"AR BO BR CL CO EC FK GF GY PE PY SR UY VE",europe:"AD AL AT AX BA BE BG BY CH CY CZ DE DK EE ES FI FO FR GB GG GI GR HR HU IE IM IS IT JE LI LT LU LV MC MD ME MK MT NL NO PL PT RO RS RU SE SI SJ SK SM UA VA",africa:"AO BF BI BJ BW CD CF CG CI CM CV DJ DZ EG EH ER ET GA GH GM GN GQ GW KE KM LR LS LY MA MG ML MR MU MW MZ NA NE NG RE RW SC SD SH SL SN SO SS ST SZ TD TG TN TZ UG YT ZA ZM ZW",asia:"AE AF AM AZ BD BH BN BT CC CN CX GE HK ID IL IN IO IQ IR JO JP KG KH KP KR KW KZ LA LB LK MM MN MO MV MY NP OM PH PK PS QA SA SG SY TH TJ TL TM TR TW UZ VN YE",oceania:"AS AU CK FJ FM GU KI MH MP NC NF NR NU NZ PF PG PN PW SB TK TO TV UM VU WF WS",antarctica:"AQ BV GS HM TF"},P=(()=>{let a=new Map;for(let t of Object.keys(te))for(let n of te[t].split(/\s+/))n&&a.set(n,t);return a})();function le(a){for(let[t,n]of a){let r=P.get(t);r&&!P.has(n)&&P.set(n,r)}}le(Y);function F(a){if(!a)return null;let t=String(a).trim().toUpperCase();if(!t)return null;let n=P.get(t);if(n)return n;let r=Z(String(a));return r?P.get(r)??null:null}function we(a,t=2){return B(a.map(n=>[n,1]),t)}function B(a,t=2){let n=new Map,r=0;for(let[l,f]of a){let d=F(l);if(!d)continue;let g=typeof f=="number"&&isFinite(f)&&f>0?f:1;n.set(d,(n.get(d)??0)+g),r+=g}if(r<t||!n.size)return null;let m="europe",i=-1;for(let l of Array.from(n.keys()).sort()){let f=n.get(l);f>i&&(m=l,i=f)}return{dominantGeoRegion:m,dominantGeoRegionPct:w(i/r*100),regionCount:n.size,n:r}}import ie from"papaparse";var me=12,ce=100,fe=.3,de=.9,ge=120,he=1900,pe=2100,be=0,ye=20,Me=new Set(["id","ids","uuid","guid","key","zip","zipcode","postal","postalcode","ssn","code","codes","sku","isbn","msisdn","imei"]);function Se(a){if(!a)return!1;let t=a.replace(/([a-z0-9])([A-Z])/g,"$1 $2").replace(/[_\-./]+/g," ").toLowerCase().split(/\s+/).filter(n=>n.length>0);return t.length===0?!1:Me.has(t[t.length-1])}var _e=/\b(year|yr|fy|fiscal\s*year|calendar\s*year)\b/i,Ce=/^(?:(?:19|20)\d{2}(?:[-/ ]?(?:q[1-4]|w(?:0?[1-9]|[1-4]\d|5[0-3])|(?:0?[1-9]|1[0-2])))?|q[1-4][-/ ](?:19|20)\d{2}|(?:jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)[a-z]*[-/ ]?(?:19|20)?\d{2})$/i;function U(a){if(!Number.isInteger(a)||a<190001||a>210012)return!1;let t=a%100;return t>=1&&t<=12}function z(a){if(!Number.isInteger(a)||a<19000101||a>21001231)return!1;let t=Math.floor(a/100)%100,n=a%100;return t>=1&&t<=12&&n>=1&&n<=31}var Te=/^(\d{4})-(\d{2})-(\d{2})(?:[T ](\d{2}):(\d{2})(?::(\d{2}))?(?:\.\d+)?Z?)?$/,Re=/^(\d{4})([\/.])(\d{1,2})\2(\d{1,2})$/,Ne=/^(\d{1,2})([\/.\-])(\d{1,2})\2(\d{4})(?:[ T](\d{2}):(\d{2})(?::(\d{2}))?)?$/;function Ie(a){let t=(a||"").toLowerCase();return t==="en-us"||t==="en"||t.startsWith("en-us-")||t==="en-ph"||t==="en-bz"}function oe(a,t){let n=0,r=0,m=0,i=0,l=0,f="",d=0,g="",C=0,b=0,A=0,h=0,e=!1;for(let y of a){if(y==null)continue;let _=String(y).trim();if(_==="")continue;n++;let p;if(p=Te.exec(_)){let T=+p[2],I=+p[3];T>=1&&T<=12&&I>=1&&I<=31&&(r++,p[4]!==void 0&&m++,p[6]!==void 0&&i++)}else if(p=Re.exec(_)){let T=+p[3],I=+p[4];T>=1&&T<=12&&I>=1&&I<=31&&(f&&f!==p[2]&&(e=!0),f=p[2],l++)}else if(p=Ne.exec(_)){let T=+p[1],I=+p[3];T>=1&&T<=31&&I>=1&&I<=31&&(T<=12||I<=12)&&(g&&g!==p[2]&&(e=!0),g=p[2],d++,T>12&&A++,I>12&&h++,p[5]!==void 0&&C++,p[7]!==void 0&&b++)}if(n>=200)break}if(n<2||(r+l+d)/n<.8||(r>0?1:0)+(l>0?1:0)+(d>0?1:0)!==1||e)return null;if(r>0)return m===r?{pattern:i===r?"%Y-%m-%dT%H:%M:%S":"%Y-%m-%dT%H:%M",orderFrom:"iso"}:{pattern:"%Y-%m-%d",orderFrom:"iso"};if(l>0)return{pattern:`%Y${f}%m${f}%d`,orderFrom:"iso"};if(A>0&&h>0)return null;let u,s;A>0?(u=!0,s="values"):h>0?(u=!1,s="values"):(u=!Ie(t),s="locale");let S=u?`%d${g}%m${g}%Y`:`%m${g}%d${g}%Y`;return C===d?{pattern:S+(b===d?" %H:%M:%S":" %H:%M"),orderFrom:s}:{pattern:S,orderFrom:s}}function Ae(a,t){if(!t||!/\b(?:19|20)\d{2}\b/.test(a))return!1;let n=a.replace(/\b(?:19|20)\d{2}\b/g,"").replace(/[-/.,]/g," ").trim();if(!n)return!1;let r=j(n);return r.length>0&&t[r]!==void 0}function De(a){let{dataType:t,name:n,isMeasure:r,distinctCount:m}=a;if(t==="DateTime")return!0;if(r)return!1;if(t==="Integer"||t==="Decimal"){let i=a.minNum,l=a.maxNum;if(!(i!=null&&l!=null&&Number.isFinite(i)&&Number.isFinite(l)&&Number.isInteger(i)&&Number.isInteger(l)&&l>=i))return!1;let d=i>=1900&&l<=2100;if(d&&m>=2&&_e.test(n)||d&&m>=3&&m===l-i+1)return!0;let g=U(i)&&U(l),C=z(i)&&z(l);if(g||C){if(!a.sampleValues)return!0;let b=0,A=0;for(let h of a.sampleValues){if(h==null||h==="")continue;b++;let e=Number(String(h).trim());if(Number.isFinite(e)&&(g?U(e):z(e))&&A++,b>=60)break}if(b>=2&&A===b)return!0}return!1}if(a.sampleValues){let i=a.locale?q(a.locale):null,l=0,f=0,d=[];for(let g of a.sampleValues){if(g==null||g==="")continue;l++;let C=String(g).trim();if(d.push(C),(Ce.test(C)||Ae(C,i))&&f++,l>=60)break}if(l>=2&&f/l>=.8||oe(d,a.locale)!==null)return!0}return!1}function xe(a){let t=(a||"").trim().toLowerCase();return t.startsWith("sum ")||t.startsWith("total ")?"sum":t.startsWith("average ")||t.startsWith("avg. ")?"avg":t.startsWith("count ")||t.startsWith("distinct count ")||t.startsWith("count (distinct) ")?"count":t.startsWith("min ")||t.startsWith("minimum ")?"min":t.startsWith("max ")||t.startsWith("maximum ")?"max":null}function Ee(a){let{rows:t,measureColIdx:n,measureName:r,candidateDims:m,minNum:i,maxNum:l,discourageAgg:f}=a,d=100,g=.01,C="";for(let A of m){if(A.distinct<2||A.distinct>d)continue;let h=m.filter(s=>s.idx!==A.idx).map(s=>s.idx),e=new Map;for(let s of t){let S=s[n];if(typeof S!="number"||!Number.isFinite(S))continue;let y=h.length?h.map(p=>String(s[p])).join(C):"",_=e.get(y);_||(_={sum:0,cset:new Set},e.set(y,_)),_.sum+=S,_.cset.add(String(s[A.idx]))}let o=0,c=0,u=0;for(let s of e.values())s.cset.size<2||(u++,Math.abs(s.sum-100)<=100*g?o++:Math.abs(s.sum-1)<=1*g&&c++);if(u>=2&&(o/u>=.9||c/u>=.9))return{additivity:"part_of_whole",partOfWholeDim:A.name}}if(f)return{additivity:"intensive_rate"};let b=xe(r);return b==="avg"||b==="min"||b==="max"?{additivity:"intensive_rate"}:b==="count"?{additivity:"additive"}:b==="sum"?{additivity:"unknown"}:i!=null&&l!=null&&Number.isFinite(i)&&Number.isFinite(l)&&i>=0&&l<=1.0001&&l>0?{additivity:"intensive_rate"}:{additivity:"unknown"}}function re(a){let{dataType:t,isMeasure:n,name:r,distinct:m,nonblank:i,prec:l,maxval:f,minval:d}=a,g=f-d+1,C=g>0?m/g:1,b=i>0?m/i:0,A=t==="Decimal"||l>0;return Se(r)?"Categorical":C>=de&&(H(r)&&m<=ge||d>=he&&f<=pe||d>=be&&f<=ye)?"Ordinal":n||m>me&&(A||m>=ce||b>=fe)?"Continuous":"Categorical"}var se=class{_computedStatsForLevel=null;_cols=[];_rows=[];_origIndices=[];_rowHashes=new Set;dedupRows=!0;STR(t){return t==null?"":t.toString()}getPrecision(t){if(!isFinite(t))return 0;let r=t.toString().split(".")[1];return r?r.length:0}getColumns(){return this._cols}hasTimeComponent(t){return!(t instanceof Date)||isNaN(t.getTime())?!1:t.getHours()!==0||t.getMinutes()!==0||t.getSeconds()!==0||t.getMilliseconds()!==0}getColumnsWithStats(t,n){if(this._computedStatsForLevel==t)return this._cols;let r=0,m=parseInt(t),i=[];for(let e of this._cols){let o=new Map,c=[],u=0,s=0,S=0,y=null,_=null,p=null,T=!1,I=!0,E=!0,x=null,D=!1;for(let R of this._rows){let M=R[r],N=this.STR(M);if(N!=""){if(u+=N.length,o.set(N,(o.get(N)||0)+1),s++,e.dataType=="Integer"||e.dataType=="Decimal"||e.dataType=="DateTime")if((y===null||M<y)&&(y=M),(_===null||M>_)&&(_=M),e.dataType=="Integer"||e.dataType=="Decimal"){if(p===null?p=M:p+=M,e.dataType=="Decimal"){let v=this.getPrecision(M);v>S&&(S=v)}c.push(M)}else T=T||this.hasTimeComponent(M);D&&(M<x?I=!1:M>x&&(E=!1)),x=M,D=!0}}if(s>=3&&(I&&!E?e.sortedDirection="asc":E&&!I?e.sortedDirection="desc":e.sortedDirection="none"),s>0&&o.size>0&&!e.isMeasure){let R=0,M=Number.MAX_SAFE_INTEGER;for(let N of o.values())N>R&&(R=N),N<M&&(M=N);if(e.modalShare=R/s,e.minGroupCount=M===Number.MAX_SAFE_INTEGER?null:M,o.size===2){let N=[...o.keys()].map(W=>J(W).trim().toLowerCase()).sort(),G=[["false","true"],["no","yes"],["n","y"],["0","1"],["f","t"]].some(W=>N[0]===W[0]&&N[1]===W[1]),O=/^(is|has)[_a-z0-9]|(?:default|churn|fraud|approv|convert|active|cancel|delinquen|flag|paid|win|pass|fail)/i.test(e.name);(G||O)&&(e.isBinaryFlag=!0)}}if(e.dataType=="DateTime"&&(e.dateWithTime=T),e.isTemporal=De({dataType:e.dataType,name:e.name,isMeasure:e.isMeasure,distinctCount:o.size,minNum:typeof y=="number"?y:null,maxNum:typeof _=="number"?_:null,sampleValues:o.keys(),locale:n}),e.isTemporal&&e.dataType==="String"&&!e.isMeasure){let R=oe(o.keys(),n);R&&(e.temporalTextPattern=R.pattern)}this.updateColumnStats10(m,e,s,o,S,_,y),this.updateColumnStats20(m,c,s,p,e,u,T,y,_,S,o,n),!e.isMeasure&&(e.dataType==="Integer"||e.dataType==="Decimal")&&re({dataType:e.dataType,isMeasure:!1,name:e.name,distinct:o.size,nonblank:s,prec:S,maxval:typeof _=="number"?_:0,minval:typeof y=="number"?y:0})==="Continuous"&&(e.isMeasure=!0),i[r]=e.isMeasure||o.size>2e3?null:new Set(o.keys()),r++}let l=[];this._cols.forEach((e,o)=>{e.isMeasure||l.push({idx:o,distinct:e.distinctCount??0,name:e.name})}),this._cols.forEach((e,o)=>{if(!e.isMeasure)return;let c=typeof e.lowValue=="number"?e.lowValue:null,u=typeof e.highValue=="number"?e.highValue:null,s=Ee({rows:this._rows,measureColIdx:o,measureName:e.name,candidateDims:l,minNum:c,maxNum:u,discourageAgg:!!e.discourageAggregationAcrossGroups});e.additivity=s.additivity,s.partOfWholeDim&&(e.partOfWholeDim=s.partOfWholeDim)});let f=50,d=l.filter(e=>e.distinct>=2&&e.distinct<=f);this._cols.forEach((e,o)=>{if(!e.isMeasure)return;let c=[];for(let x of this._rows){let D=x[o];if(D==null||D==="")continue;let R=typeof D=="number"?D:parseFloat(D);isNaN(R)||c.push(R)}if(c.length===0)return;let u=[...c].sort((x,D)=>x-D),s=x=>u[Math.min(u.length-1,Math.max(0,Math.floor(x*(u.length-1))))],S=s(.5),y=s(.1),_=s(.9),p=Math.abs(S)>1e-9?Math.abs(S):Math.abs(u[u.length-1])>1e-9?Math.abs(u[u.length-1]):1;e.relativeDispersion=Math.round((_-y)/p*1e3)/1e3;let T=0;for(let x of c)T+=x;T/=c.length;let I=0;for(let x of c)I+=(x-T)*(x-T);if(I<=1e-12)return;let E=[];for(let x of d){let D=new Map;for(let M of this._rows){let N=M[o];if(N==null||N==="")continue;let v=typeof N=="number"?N:parseFloat(N);if(isNaN(v))continue;let G=this.STR(M[x.idx])+"",O=D.get(G);O?(O.s+=v,O.n++):D.set(G,{s:v,n:1})}let R=0;for(let M of D.values()){let N=M.s/M.n;R+=M.n*(N-T)*(N-T)}E.push({otherColumn:x.name,eta2:Math.round(R/I*1e4)/1e4})}E.length>0&&(e.groupDiscrimination=E)});let g=.97,C=5,b=this._cols.map((e,o)=>({c:e,i:o})).filter(e=>e.c.isMeasure);for(let e=0;e<b.length;e++)for(let o=e+1;o<b.length;o++){let c=b[e].i,u=b[o].i,s=0,S=0,y=0,_=0,p=0,T=0;for(let D of this._rows){let R=D[c],M=D[u];if(R==null||R===""||M===null||M===void 0||M==="")continue;let N=typeof R=="number"?R:parseFloat(R),v=typeof M=="number"?M:parseFloat(M);isNaN(N)||isNaN(v)||(s++,S+=N,y+=v,_+=N*N,p+=v*v,T+=N*v)}if(s<C)continue;let I=s*_-S*S,E=s*p-y*y;if(I<=1e-12||E<=1e-12)continue;let x=(s*T-S*y)/Math.sqrt(I*E);if(Math.abs(x)>=g){let D=b[e].c,R=b[o].c;D.collinearWithMeasures||(D.collinearWithMeasures=[]),R.collinearWithMeasures||(R.collinearWithMeasures=[]),D.collinearWithMeasures.push(R.name),R.collinearWithMeasures.push(D.name)}}for(let e=0;e<this._cols.length;e++){let o=i[e];if(!o||o.size===0)continue;let c=[];for(let u=0;u<this._cols.length;u++){if(u===e)continue;let s=i[u];if(!s||s.size===0)continue;let S=0;for(let _ of o)s.has(_)&&S++;let y=Math.round(S/o.size*100);y>0&&c.push({otherColumn:this._cols[u].name,percentShared:y})}c.length>0&&(this._cols[e].sharedValueRatioWithOthers=c)}let A=50,h=[];for(let e=0;e<this._cols.length;e++){let o=i[e];o&&o.size>=2&&o.size<=A&&h.push(e)}if(h.length>=2){let e=new Map,o=(u,s)=>u+":"+s;for(let u=0;u<h.length;u++)for(let s=u+1;s<h.length;s++)e.set(o(h[u],h[s]),new Map);for(let u of this._rows)for(let s=0;s<h.length;s++){let S=this.STR(u[h[s]])+"";for(let y=s+1;y<h.length;y++){let _=""+this.STR(u[h[y]]),p=e.get(o(h[s],h[y])),T=S+""+_;p.set(T,(p.get(T)??0)+1)}}let c=new Map;for(let u=0;u<h.length;u++)for(let s=u+1;s<h.length;s++){let S=h[u],y=h[s],_=i[S].size,p=i[y].size,T=e.get(o(S,y)),I=T.size,E=0;for(let M of T.values())(E===0||M<E)&&(E=M);let x=Math.round(I/(_*p)*100),D=I===_,R=I===p;if((this._cols[S].categoricalPairStats||=[]).push({otherColumn:this._cols[y].name,fillPct:x,determinesOther:D,minCellCount:E,distinctCombinations:I}),(this._cols[y].categoricalPairStats||=[]).push({otherColumn:this._cols[S].name,fillPct:x,determinesOther:R,minCellCount:E,distinctCombinations:I}),D&&_>p){let M=c.get(S);(!M||p<M.card)&&c.set(S,{name:this._cols[y].name,card:p,ratio:p/_})}if(R&&p>_){let M=c.get(y);(!M||_<M.card)&&c.set(y,{name:this._cols[S].name,card:_,ratio:_/p})}}for(let[u,s]of c)this._cols[u].primaryParentColumn=s.name,this._cols[u].nestingRatio=Math.round(s.ratio*100)/100}return this._computedStatsForLevel=t,this._cols}updateColumnStats20(t,n,r,m,i,l,f,d,g,C,b,A){if(t>=20){let h=[...n].sort((c,u)=>c-u),e=Math.floor(h.length/2);if(r>0&&m!=null?i.avgValue=i.dataType=="Integer"?Math.round(m/r):m/r:i.avgValue=null,r>0&&(i.avgLength=l/r),this._rows.length>0&&(i.dataType!="DateTime"||f||!d?i.lowValue=d:i.lowValue=new Date(d).toISOString().slice(0,10)+"T00:00:00.000Z",i.dataType!="DateTime"||f||!g?i.highValue=g:i.highValue=new Date(g).toISOString().slice(0,10)+"T00:00:00.000Z",i.medianValue=h.length===0?null:h.length%2===0?i.dataType=="Integer"?Math.round((h[e-1]+h[e])/2):(h[e-1]+h[e])/2:h[e],i.numericPrecision=C),h.length>0){let c=i.avgValue??0,u=h.length,s=0,S=0;for(let _ of h){let p=_-c;s+=p*p,S+=p*p*p}let y=s/u;i.skewness=y===0?0:S/u/Math.pow(Math.sqrt(y),3),i.stdDev=Math.sqrt(y)}m!==null&&(i.sum=m);let o=Array.from(b.entries()).sort((c,u)=>u[1]-c[1]);if(i.topCategories=o.slice(0,10).map(c=>c[1]),!i.isMeasure&&o.length>0){if(i.dataType==="String"){let c=o.map(s=>s[0]);i.formatSignature=X(c);let u=/^(UUID|EMAIL_LIKE|URL_LIKE|PHONE_LIKE|NUMERIC_ID|HEX_ID|OPAQUE_ID_ALPHANUMERIC|DATE_STR|BOOLEAN)$/;i.formatSignature&&!u.test(i.formatSignature)&&(i.avgLength===void 0||i.avgLength>=3)&&(i.isFreeText=!0)}else i.topCategoryValues=o.slice(0,5).map(c=>c[0]);if(t>=20){let c=o.map(s=>s[0]),u=K(c,A);if(u!==null)i.ordinalPattern=u.pattern,i.orderedDomain=u.orderedDomain;else if(i.dataType==="String"){let s=k(c);s!==null&&(i.safeDistinctValues=s)}}}if(h.length>=8&&(i.dataType==="Integer"||i.dataType==="Decimal")){let c=u=>h[Math.floor((h.length-1)*u)];i.quantiles={p05:c(.05),p25:c(.25),p75:c(.75),p95:c(.95)}}}if(!i.isMeasure&&b.size>0){let h=Array.from(b.entries()).sort((o,c)=>c[1]-o[1]),e=$(h.map(o=>o[0]),i.name,A);if(e!==null&&(i.geoKind=e.geoKind,i.geoMatchPct=e.geoMatchPct,e.geoAmbiguous&&(i.geoAmbiguous=!0),e.geoKind.indexOf("country")===0)){let o=B(h);o&&(i.dominantGeoRegion=o.dominantGeoRegion,i.dominantGeoRegionPct=o.dominantGeoRegionPct,i.geoRegionCount=o.regionCount)}}}updateColumnStats10(t,n,r,m,i,l,f){t>=10&&(n.blankCount=this._rows.length-r,n.distinctCount=m.size+(n.blankCount!=0?1:0),n.valueNature="Categorical",r>0&&(n.dataType==="Integer"||n.dataType==="Decimal"?n.valueNature=re({dataType:n.dataType,isMeasure:!!n.isMeasure,name:n.name,distinct:m.size,nonblank:r,prec:i,maxval:l,minval:f}):n.dataType==="DateTime"&&(n.valueNature=n.dateWithTime?"Continuous":"Ordinal")))}getRowCount(){return this._rows.length}getLeafCardinality(){if(this._leafCardinality!==null)return this._leafCardinality;let t=[];if(this._cols.forEach((r,m)=>{r.isMeasure||t.push(m)}),t.length===0)return this._leafCardinality=this._rows.length,this._leafCardinality;let n=new Set;for(let r of this._rows)n.add(JSON.stringify(t.map(m=>r[m])));return this._leafCardinality=n.size,this._leafCardinality}_leafCardinality=null;getGeoExtent(){if(this._geoExtentComputed)return this._geoExtent;this._geoExtentComputed=!0,this._geoExtent=null;let t=l=>String(l||"").replace(/([a-z0-9])([A-Z])/g,"$1 $2").toLowerCase().split(/[^a-z]+/),n=-1,r=-1,m=-1;if(this._cols.forEach((l,f)=>{let d=t(l.name),g=l.dataType==="Integer"||l.dataType==="Decimal";g&&n<0&&d.some(C=>C==="lat"||C==="latitude")?n=f:g&&r<0&&d.some(C=>C==="lon"||C==="lng"||C==="long"||C==="longitude")&&(r=f),m<0&&!l.isMeasure&&typeof l.geoKind=="string"&&l.geoKind.indexOf("country")===0&&(m=f)}),n<0||r<0)return null;let i=[];for(let l of this._rows){let f=l[n],d=l[r],g=f==null||f===""?null:Number(f),C=d==null||d===""?null:Number(d);i.push({lat:g,lon:C,country:m>=0&&F(this.STR(l[m]))?this.STR(l[m]):null})}return this._geoExtent=ne(i),this._geoExtent}_geoExtent=null;_geoExtentComputed=!1;obfuscateString(t){let n="abcdefghijklmnopqrstuvwxyz",r=()=>n[Math.floor(L()*n.length)],m=()=>r().toUpperCase(),i=()=>Math.floor(L()*10).toString(),l=e=>/[A-Z]/.test(e)?m():/[a-z]/.test(e)?r():/[0-9]/.test(e)?i():e,f=t.includes("@")&&t.includes("."),d=f?t.split("@"):[t],g=f?d[1]:"",C=g.endsWith(".com"),b=C?".com":"",A=C?g.slice(0,-4):g,h=e=>{let o="";for(let c of e)o+=l(c),/[a-zA-Z0-9]/.test(c)&&L()<.2&&(o+=l(c));if(o.length>6){let c=Math.floor(L()*Math.min(3,o.length-6));for(let u=0;u<c;u++){let s=0;for(;s<5;){let S=Math.floor(L()*o.length);if(/[a-zA-Z0-9]/.test(o[S])){o=o.slice(0,S)+o.slice(S+1);break}s++}}}return o};if(f){let e=h(d[0]),o=h(A);return`${e}@${o}${b}`}else return h(t)}toObjectArray(){return this._rows.map(t=>{let n={};return this._cols.forEach((r,m)=>{n[r.name]=t[m]}),n})}async getCSVAsync(t){let n=[],r=t?25:1e7,m=t?4e3:1e7,i=new Map;for(let f of this._rows){let d={};for(let g=0;g<this._cols.length;g++){let C=this._cols[g],b=f[g];if(this.STR(b)!=""){if(t&&C.dataType=="String")if(i.has(b))b=i.get(b);else{let A=this.obfuscateString(b);i.set(b,A),b=A}else C.dataType=="DateTime"&&!C.dateWithTime&&(b=new Date(b).toISOString().slice(0,10)+"T00:00:00.000Z");m-=this.STR(b).length}else b=null;d[g]=b,--m}if(n.push(d),--r,r<=0||m<=0)break}return await ie.unparse(n,{header:!1})}getCSVHeaderLine(){return ie.unparse([this._cols.map(t=>this.STR(t.name))])}addRow(t,n){if(this.dedupRows){let r="";for(let i of t)r+=this.STR(i)+"~";let m=Q(r);if(this._rowHashes.has(m))return!1;this._rowHashes.add(m)}return this._rows.push(t),this._origIndices.push(n??-1),!0}getOriginalRowIndex(t){return t<0||t>=this._origIndices.length?-1:this._origIndices[t]}reset(){this._cols=[],this._rows=[],this._origIndices=[],this._rowHashes=new Set,this._leafCardinality=null}setColumns(t){this._cols=t}};export{ne as a,le as b,F as c,we as d,Se as e,oe as f,De as g,xe as h,Ee as i,re as j,se as k};
|
package/dist/index.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! @bicharts/shape-core — Apache-2.0. Bundled reference data: GeoNames (https://www.geonames.org/) CC BY 4.0; US Census/TIGER (public domain). Full text: NOTICE in this package. */
|
|
2
|
-
import{a as
|
|
2
|
+
import{a as Lt,b as zt}from"./chunk-4SKRJEPX.mjs";import{a as pt,b as yt,c as dt,d as gt,e as Mt,f as Tt,g as At,h as St,i as vt,j as kt,k as It}from"./chunk-USLND66G.mjs";import{a as ht}from"./chunk-QEH7WTLB.mjs";import{a as Ct,b as Pt}from"./chunk-2LR73DNS.mjs";import{a as xt,b as bt,c as Rt}from"./chunk-NWDPA7DG.mjs";import{a as K,b as V,c as ut,d as ct,e as ft,f as mt}from"./chunk-SAASSIJ7.mjs";import{a as R,f as M,g,h as T,i as G,j as X,k as tt,l as H,m as p,n as nt,o as et,p as ot,q as A,r as it,s as rt,t as st,u as at,v as _,w as lt}from"./chunk-E6SVTFAW.mjs";import"./chunk-5MRZID36.mjs";import{a as Y,b as J,c as Q}from"./chunk-WBEROMBG.mjs";var w=2,j=400;function N(r){return!!M(r)}function P(r){let n=new Set;for(let e of r){if(e==null)continue;let s=R(String(e));if(!T(s)&&!n.has(s)&&(n.add(s),n.size>=j))break}return Array.from(n)}function C(r){let n=P(r);if(n.length===0||E(r)<95)return!1;let e=n.filter(l=>N(l)&&!p(l)).length,s=n.filter(l=>!N(l)&&!!p(l)).length;return e>=1&&e>=s}function q(r,n){if(!p(r))return!1;let e=M(r);return e?n==="world"?!0:H.has(e):!1}function E(r){let n=P(r);if(n.length===0)return 0;let e=0;for(let s of n)N(s)&&e++;return Math.round(e/n.length*1e3)/10}function S(r){let n=P(r);if(n.length===0)return 0;let e=0;for(let s of n)p(s)&&e++;return Math.round(e/n.length*1e3)/10}function D(r){let n=new Set;for(let e of r){if(e==null)continue;let s=String(e).trim();if(!T(R(s))&&!n.has(s)&&(n.add(s),n.size>=j))break}return Array.from(n)}function O(r){let n=D(r);if(n.length===0)return 0;let e=0;for(let s of n)A(s).length>0&&e++;return Math.round(e/n.length*1e3)/10}function Z(r,n){return V(n,K)?!0:D(r).some(e=>/^\d{5}(-\d{4})?$/.test(e.replace(/\.0+$/,"")))}function Gt(r,n){let e=P(r);if(e.length===0)return 0;let s=0;for(let l of e)_(l,n)&&s++;return Math.round(s/e.length*1e3)/10}function $(r,n){let e=0;for(let s of P(r))n(s)&&e++;return e}function _t(r,n){let e=0;for(let s of D(r))n(s)&&e++;return e}function wt(r,n,e,s){let l=[],c=[],o={},v={},k=new Set(r),u=t=>n.map(i=>i[t]);for(let t of["city","lat","lon","country"]){let i=e?.[t];i&&k.has(i)&&(o[t]=i)}let y=e?.zip;if(y&&k.has(y)){let t=u(y),i=O(t);i<95?c.push(`zip=${y} (only ${i}% of values read as ZIPs)`):Z(t,y)?o.zip=y:c.push(`zip=${y} (all values are 3-4 digits with nothing to say they are postal)`)}let m=e?.state;if(m&&k.has(m)){let t=u(m),i=P(t);i.length>0&&i.every(a=>q(a,s))?c.push(`state=${m} (every value is "CA", which is both Canada and California)`):C(t)?(c.push(`state=${m} (every value is a country, not a state)`),o.country||(o.country=m)):S(t)<95?c.push(`state=${m} (only ${S(t)}% of values are states/provinces)`):o.state=m}let d=new Set(Object.values(o).filter(Boolean)),x=r.filter(t=>!d.has(t)&&!t.startsWith("__"));if(!o.state){let t=null;for(let i of x){let a=u(i);if(C(a))continue;let f=S(a);if(f<95)continue;let z=$(a,b=>!!p(b)),W=$(a,b=>!!p(b)&&!q(b,s));z<w&&W<1||(!t||f>t.pct)&&(t={name:i,pct:f})}t&&(o.state=t.name,d.add(t.name),l.push(`state=${t.name} (${t.pct}% states/provinces)`))}if(!o.zip)for(let t of x){if(d.has(t))continue;let i=u(t),a=O(i);if(!(a<95)&&Z(i,t)&&!(_t(i,f=>A(f).length>0)<w)){o.zip=t,d.add(t),l.push(`zip=${t} (${a}% ZIP codes)`);break}}let h=o.country;if(!h||!C(u(h))){let t=null;for(let i of x){if(d.has(i)||!C(u(i)))continue;let a=E(u(i));(!t||a>t.pct)&&(t={name:i,pct:a})}t&&(h&&(c.push(`country=${h} (only ${E(u(h))}% of values are country identifiers; using ${t.name} instead)`),v.country=h),o.country=t.name,d.add(t.name),l.push(`country=${t.name}`))}if(!o.city){let t=null;for(let i of x){if(d.has(i))continue;let a=u(i),f=Gt(a,s);f<G||$(a,z=>_(z,s))<w||(!t||f>t.pct)&&(t={name:i,pct:f})}t&&(o.city=t.name,l.push(`city=${t.name} (${t.pct}% known cities)`))}let B=o.country?u(o.country):[],I=!!o.country&&C(B),U=I?new Set(B.map(t=>M(t==null?null:String(t))).filter(Boolean)).size:0,F=I&&U>=2,L=!!(o.lat&&o.lon)&&n.some(t=>{let i=+String(t[o.lat]??"").trim(),a=+String(t[o.lon]??"").trim();return isFinite(i)&&isFinite(a)&&i>=-90&&i<=90&&a>=-180&&a<=180&&String(t[o.lat]??"").trim()!==""&&String(t[o.lon]??"").trim()!==""});return o.lat&&o.lon&&!L&&c.push(`lat/lon=${o.lat}/${o.lon} (no row holds a usable coordinate pair)`),o.country&&!F&&!(o.city||o.state||o.zip||L)&&c.push(I?`country=${o.country} (every row resolves to the same country - nothing to place apart)`:`country=${o.country} (values are not country identifiers)`),{bind:!!(o.city||o.state||o.zip||F||L)?o:null,backfilled:l,refused:c,...Object.keys(v).length?{labelFallback:v}:{}}}export{G as CITY_ROLE_MATCH_PCT,Rt as GET_RANDOM,It as IndexedText,g as ROLE_MATCH_PCT,bt as SIMPLE_STRING_HASH,xt as STR,S as admin1MatchPct,mt as buildGeoIsoColumn,st as buildGeoPointColumns,lt as cityMatchPct,at as cityTagsFor,vt as classifyAdditivity,kt as classifyNumericValueNature,At as classifyTemporal,dt as countryRegion,ht as detectFormatSignature,ut as detectGeo,Q as detectOrdinalDomain,Tt as detectTextDatePattern,Lt as engineTypeForSqlType,St as hostAggHint,zt as ingest,T as isBlankLike,tt as isCityTableLoaded,it as isGeoPointAmbiguity,Mt as isIdentifierName,ft as isJoinGeoKind,Y as isOrdinalFriendlyName,C as looksLikeCountryColumn,Pt as monthLookupFor,nt as normalizeCountry,Ct as normalizeMonthKey,R as normalizePlaceName,ot as normalizeZip5,X as registerCityTable,yt as registerIso3Regions,p as resolveAdmin1,rt as resolveGeoPoint,wt as resolvePointRoles,J as safeDistinctValuesToShip,gt as summarizeCountryRegions,pt as summarizeGeoExtent,ct as toGeoIso,O as zipMatchPct,A as zipPrefixCandidates,et as zipToPrefix3};
|
package/dist/indexedText.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! @bicharts/shape-core — Apache-2.0. Bundled reference data: GeoNames (https://www.geonames.org/) CC BY 4.0; US Census/TIGER (public domain). Full text: NOTICE in this package. */
|
|
2
|
-
import{e as a,f as b,g as c,h as d,i as e,j as f}from"./chunk-
|
|
2
|
+
import{e as a,f as b,g as c,h as d,i as e,j as f,k as g}from"./chunk-USLND66G.mjs";import"./chunk-QEH7WTLB.mjs";import"./chunk-2LR73DNS.mjs";import"./chunk-NWDPA7DG.mjs";import"./chunk-SAASSIJ7.mjs";import"./chunk-E6SVTFAW.mjs";import"./chunk-5MRZID36.mjs";import"./chunk-WBEROMBG.mjs";export{g as IndexedText,e as classifyAdditivity,f as classifyNumericValueNature,c as classifyTemporal,b as detectTextDatePattern,d as hostAggHint,a as isIdentifierName};
|
package/dist/ingest.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! @bicharts/shape-core — Apache-2.0. Bundled reference data: GeoNames (https://www.geonames.org/) CC BY 4.0; US Census/TIGER (public domain). Full text: NOTICE in this package. */
|
|
2
|
-
import{a,b}from"./chunk-
|
|
2
|
+
import{a,b}from"./chunk-4SKRJEPX.mjs";import"./chunk-USLND66G.mjs";import"./chunk-QEH7WTLB.mjs";import"./chunk-2LR73DNS.mjs";import"./chunk-NWDPA7DG.mjs";import"./chunk-SAASSIJ7.mjs";import"./chunk-E6SVTFAW.mjs";import"./chunk-5MRZID36.mjs";import"./chunk-WBEROMBG.mjs";export{a as engineTypeForSqlType,b as ingest};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { IndexedText } from "./indexedText";
|
|
2
2
|
export type { IValueCollection } from "./indexedText";
|
|
3
|
-
export { classifyTemporal, classifyAdditivity, classifyNumericValueNature, hostAggHint, isIdentifierName, } from "./indexedText";
|
|
3
|
+
export { classifyTemporal, detectTextDatePattern, classifyAdditivity, classifyNumericValueNature, hostAggHint, isIdentifierName, } from "./indexedText";
|
|
4
|
+
export type { TextDateDetection } from "./indexedText";
|
|
4
5
|
export type { LLMColumnWithValue } from "./models";
|
|
5
6
|
export type { LLMRequestModifier, SimpleColumn, VegaRendererPayload, LLMClientHints, LLMRequestCode, LLMQualifyResult, LLMRequestCodeResult, GetLicenseStatusResult, } from "./models";
|
|
6
7
|
export { ROLE_MATCH_PCT, CITY_ROLE_MATCH_PCT, isBlankLike } from "./matchQuality";
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { LLMColumnWithValue } from "./models";
|
|
2
2
|
export declare function isIdentifierName(name: string): boolean;
|
|
3
3
|
export type ValueNature = "Continuous" | "Ordinal" | "Categorical";
|
|
4
|
+
export interface TextDateDetection {
|
|
5
|
+
/** strptime / d3.timeParse specifier, e.g. "%d/%m/%Y". */
|
|
6
|
+
pattern: string;
|
|
7
|
+
/** How the day/month order was settled: by a value that decided it, or by the locale. */
|
|
8
|
+
orderFrom: "iso" | "values" | "locale";
|
|
9
|
+
}
|
|
10
|
+
export declare function detectTextDatePattern(values: Iterable<string>, locale?: string): TextDateDetection | null;
|
|
4
11
|
export declare function classifyTemporal(args: {
|
|
5
12
|
dataType: string;
|
|
6
13
|
name: string;
|
package/dist/types/models.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export type LLMColumnWithValue = {
|
|
|
31
31
|
topCategories?: number[];
|
|
32
32
|
valueNature?: string;
|
|
33
33
|
isTemporal?: boolean;
|
|
34
|
+
temporalTextPattern?: string;
|
|
34
35
|
additivity?: "additive" | "part_of_whole" | "intensive_rate" | "unknown";
|
|
35
36
|
partOfWholeDim?: string;
|
|
36
37
|
discourageAggregationAcrossGroups?: boolean;
|
|
@@ -139,6 +140,7 @@ export type LLMRequestCode = {
|
|
|
139
140
|
genNew?: boolean;
|
|
140
141
|
version?: number;
|
|
141
142
|
editSync?: boolean;
|
|
143
|
+
fetchOnly?: boolean;
|
|
142
144
|
model?: string;
|
|
143
145
|
renderer?: string;
|
|
144
146
|
language?: string;
|
|
@@ -195,6 +197,8 @@ export type LLMRequestCodeResult = {
|
|
|
195
197
|
chartName?: string;
|
|
196
198
|
isServiceError: boolean;
|
|
197
199
|
isRateLimited?: boolean;
|
|
200
|
+
retryAfterSeconds?: number;
|
|
201
|
+
isVersionNotFound?: boolean;
|
|
198
202
|
creditBalanceBefore: number;
|
|
199
203
|
creditCost: number;
|
|
200
204
|
outputHash: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bicharts/shape-core",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.27",
|
|
4
4
|
"description": "Host-agnostic data-shape profiler: ingest a dataset's rows through IValueCollection.addRow and read back the measured shape as an LLMColumnWithValue[] payload — types, cardinality, temporal/ordinal detection, geographic region and point resolution, cross-column signals. MEASUREMENT only: the policy that decides what a measured shape means for chart selection lives server-side.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
package/dist/chunk-L2HRDGGX.mjs
DELETED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
/*! @bicharts/shape-core — Apache-2.0. Bundled reference data: GeoNames (https://www.geonames.org/) CC BY 4.0; US Census/TIGER (public domain). Full text: NOTICE in this package. */
|
|
2
|
-
import{a as j}from"./chunk-QEH7WTLB.mjs";import{a as q,b as J}from"./chunk-2LR73DNS.mjs";import{a as $,b as Q,c as L}from"./chunk-NWDPA7DG.mjs";import{c as X}from"./chunk-SAASSIJ7.mjs";import{b as Y,f as Z}from"./chunk-E6SVTFAW.mjs";import{a as K,b as k,c as H}from"./chunk-WBEROMBG.mjs";var ot=[[24.4,49.4,-125,-66.9],[51.2,71.5,-168,-129.9],[18.9,22.3,-160.3,-154.8]],at=[7,72,-172,-52];function tt(a,e,i){return a>=i[0]&&a<=i[1]&&e>=i[2]&&e<=i[3]}function W(a,e){if(!a.length)return NaN;if(a.length===1)return a[0];let i=(a.length-1)*e,o=Math.floor(i),m=Math.ceil(i);return o===m?a[o]:a[o]+(a[m]-a[o])*(i-o)}var x=a=>Math.round(a*10)/10;function nt(a,e=3){let i=[],o=[],m=0,n=0;for(let f of a){let g=f?.lat,h=f?.lon;if(typeof g!="number"||typeof h!="number"||!isFinite(g)||!isFinite(h)||g<-90||g>90||h<-180||h>180)continue;i.push(g),o.push(h);let S=f?.country?String(f.country).trim().toUpperCase():"",p=S?F(S):null;p?((S==="US"||S==="USA")&&m++,p==="north-america"&&n++):(ot.some(I=>tt(g,h,I))&&m++,tt(g,h,at)&&n++)}let l=i.length;return l<e?null:(i.sort((f,g)=>f-g),o.sort((f,g)=>f-g),{pctUsa:x(m/l*100),pctNa:x(n/l*100),latP5:x(W(i,.05)),latP95:x(W(i,.95)),lonP5:x(W(o,.05)),lonP95:x(W(o,.95)),n:l})}var et={"north-america":"AG AI AW BB BL BM BQ BS BZ CA CR CU CW DM DO GD GL GP GT HN HT JM KN KY LC MF MQ MS MX NI PA PM PR SV SX TC TT US VC VG VI","south-america":"AR BO BR CL CO EC FK GF GY PE PY SR UY VE",europe:"AD AL AT AX BA BE BG BY CH CY CZ DE DK EE ES FI FO FR GB GG GI GR HR HU IE IM IS IT JE LI LT LU LV MC MD ME MK MT NL NO PL PT RO RS RU SE SI SJ SK SM UA VA",africa:"AO BF BI BJ BW CD CF CG CI CM CV DJ DZ EG EH ER ET GA GH GM GN GQ GW KE KM LR LS LY MA MG ML MR MU MW MZ NA NE NG RE RW SC SD SH SL SN SO SS ST SZ TD TG TN TZ UG YT ZA ZM ZW",asia:"AE AF AM AZ BD BH BN BT CC CN CX GE HK ID IL IN IO IQ IR JO JP KG KH KP KR KW KZ LA LB LK MM MN MO MV MY NP OM PH PK PS QA SA SG SY TH TJ TL TM TR TW UZ VN YE",oceania:"AS AU CK FJ FM GU KI MH MP NC NF NR NU NZ PF PG PN PW SB TK TO TV UM VU WF WS",antarctica:"AQ BV GS HM TF"},O=(()=>{let a=new Map;for(let e of Object.keys(et))for(let i of et[e].split(/\s+/))i&&a.set(i,e);return a})();function ut(a){for(let[e,i]of a){let o=O.get(e);o&&!O.has(i)&&O.set(i,o)}}ut(Y);function F(a){if(!a)return null;let e=String(a).trim().toUpperCase();if(!e)return null;let i=O.get(e);if(i)return i;let o=Z(String(a));return o?O.get(o)??null:null}function At(a,e=2){return B(a.map(i=>[i,1]),e)}function B(a,e=2){let i=new Map,o=0;for(let[l,f]of a){let g=F(l);if(!g)continue;let h=typeof f=="number"&&isFinite(f)&&f>0?f:1;i.set(g,(i.get(g)??0)+h),o+=h}if(o<e||!i.size)return null;let m="europe",n=-1;for(let l of Array.from(i.keys()).sort()){let f=i.get(l);f>n&&(m=l,n=f)}return{dominantGeoRegion:m,dominantGeoRegionPct:x(n/o*100),regionCount:i.size,n:o}}import it from"papaparse";var lt=12,mt=100,ct=.3,ft=.9,gt=120,dt=1900,ht=2100,pt=0,bt=20,yt=new Set(["id","ids","uuid","guid","key","zip","zipcode","postal","postalcode","ssn","code","codes","sku","isbn","msisdn","imei"]);function Mt(a){if(!a)return!1;let e=a.replace(/([a-z0-9])([A-Z])/g,"$1 $2").replace(/[_\-./]+/g," ").toLowerCase().split(/\s+/).filter(i=>i.length>0);return e.length===0?!1:yt.has(e[e.length-1])}var Ct=/\b(year|yr|fy|fiscal\s*year|calendar\s*year)\b/i,St=/^(?:(?:19|20)\d{2}(?:[-/ ]?(?:q[1-4]|w(?:0?[1-9]|[1-4]\d|5[0-3])|(?:0?[1-9]|1[0-2])))?|q[1-4][-/ ](?:19|20)\d{2}|(?:jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)[a-z]*[-/ ]?(?:19|20)?\d{2})$/i;function U(a){if(!Number.isInteger(a)||a<190001||a>210012)return!1;let e=a%100;return e>=1&&e<=12}function z(a){if(!Number.isInteger(a)||a<19000101||a>21001231)return!1;let e=Math.floor(a/100)%100,i=a%100;return e>=1&&e<=12&&i>=1&&i<=31}function _t(a,e){if(!e||!/\b(?:19|20)\d{2}\b/.test(a))return!1;let i=a.replace(/\b(?:19|20)\d{2}\b/g,"").replace(/[-/.,]/g," ").trim();if(!i)return!1;let o=q(i);return o.length>0&&e[o]!==void 0}function Rt(a){let{dataType:e,name:i,isMeasure:o,distinctCount:m}=a;if(e==="DateTime")return!0;if(o)return!1;if(e==="Integer"||e==="Decimal"){let n=a.minNum,l=a.maxNum;if(!(n!=null&&l!=null&&Number.isFinite(n)&&Number.isFinite(l)&&Number.isInteger(n)&&Number.isInteger(l)&&l>=n))return!1;let g=n>=1900&&l<=2100;if(g&&m>=2&&Ct.test(i)||g&&m>=3&&m===l-n+1)return!0;let h=U(n)&&U(l),S=z(n)&&z(l);if(h||S){if(!a.sampleValues)return!0;let p=0,I=0;for(let d of a.sampleValues){if(d==null||d==="")continue;p++;let t=Number(String(d).trim());if(Number.isFinite(t)&&(h?U(t):z(t))&&I++,p>=60)break}if(p>=2&&I===p)return!0}return!1}if(a.sampleValues){let n=a.locale?J(a.locale):null,l=0,f=0;for(let g of a.sampleValues){if(g==null||g==="")continue;l++;let h=String(g).trim();if((St.test(h)||_t(h,n))&&f++,l>=60)break}if(l>=2&&f/l>=.8)return!0}return!1}function Tt(a){let e=(a||"").trim().toLowerCase();return e.startsWith("sum ")||e.startsWith("total ")?"sum":e.startsWith("average ")||e.startsWith("avg. ")?"avg":e.startsWith("count ")||e.startsWith("distinct count ")||e.startsWith("count (distinct) ")?"count":e.startsWith("min ")||e.startsWith("minimum ")?"min":e.startsWith("max ")||e.startsWith("maximum ")?"max":null}function Nt(a){let{rows:e,measureColIdx:i,measureName:o,candidateDims:m,minNum:n,maxNum:l,discourageAgg:f}=a,g=100,h=.01,S="";for(let I of m){if(I.distinct<2||I.distinct>g)continue;let d=m.filter(s=>s.idx!==I.idx).map(s=>s.idx),t=new Map;for(let s of e){let M=s[i];if(typeof M!="number"||!Number.isFinite(M))continue;let y=d.length?d.map(_=>String(s[_])).join(S):"",C=t.get(y);C||(C={sum:0,cset:new Set},t.set(y,C)),C.sum+=M,C.cset.add(String(s[I.idx]))}let r=0,c=0,u=0;for(let s of t.values())s.cset.size<2||(u++,Math.abs(s.sum-100)<=100*h?r++:Math.abs(s.sum-1)<=1*h&&c++);if(u>=2&&(r/u>=.9||c/u>=.9))return{additivity:"part_of_whole",partOfWholeDim:I.name}}if(f)return{additivity:"intensive_rate"};let p=Tt(o);return p==="avg"||p==="min"||p==="max"?{additivity:"intensive_rate"}:p==="count"?{additivity:"additive"}:p==="sum"?{additivity:"unknown"}:n!=null&&l!=null&&Number.isFinite(n)&&Number.isFinite(l)&&n>=0&&l<=1.0001&&l>0?{additivity:"intensive_rate"}:{additivity:"unknown"}}function rt(a){let{dataType:e,isMeasure:i,name:o,distinct:m,nonblank:n,prec:l,maxval:f,minval:g}=a,h=f-g+1,S=h>0?m/h:1,p=n>0?m/n:0,I=e==="Decimal"||l>0;return Mt(o)?"Categorical":S>=ft&&(K(o)&&m<=gt||g>=dt&&f<=ht||g>=pt&&f<=bt)?"Ordinal":i||m>lt&&(I||m>=mt||p>=ct)?"Continuous":"Categorical"}var st=class{_computedStatsForLevel=null;_cols=[];_rows=[];_origIndices=[];_rowHashes=new Set;dedupRows=!0;STR(e){return e==null?"":e.toString()}getPrecision(e){if(!isFinite(e))return 0;let o=e.toString().split(".")[1];return o?o.length:0}getColumns(){return this._cols}hasTimeComponent(e){return!(e instanceof Date)||isNaN(e.getTime())?!1:e.getHours()!==0||e.getMinutes()!==0||e.getSeconds()!==0||e.getMilliseconds()!==0}getColumnsWithStats(e,i){if(this._computedStatsForLevel==e)return this._cols;let o=0,m=parseInt(e),n=[];for(let t of this._cols){let r=new Map,c=[],u=0,s=0,M=0,y=null,C=null,_=null,E=!1,w=!0,D=!0,A=null,N=!1;for(let T of this._rows){let b=T[o],R=this.STR(b);if(R!=""){if(u+=R.length,r.set(R,(r.get(R)||0)+1),s++,t.dataType=="Integer"||t.dataType=="Decimal"||t.dataType=="DateTime")if((y===null||b<y)&&(y=b),(C===null||b>C)&&(C=b),t.dataType=="Integer"||t.dataType=="Decimal"){if(_===null?_=b:_+=b,t.dataType=="Decimal"){let v=this.getPrecision(b);v>M&&(M=v)}c.push(b)}else E=E||this.hasTimeComponent(b);N&&(b<A?w=!1:b>A&&(D=!1)),A=b,N=!0}}if(s>=3&&(w&&!D?t.sortedDirection="asc":D&&!w?t.sortedDirection="desc":t.sortedDirection="none"),s>0&&r.size>0&&!t.isMeasure){let T=0,b=Number.MAX_SAFE_INTEGER;for(let R of r.values())R>T&&(T=R),R<b&&(b=R);if(t.modalShare=T/s,t.minGroupCount=b===Number.MAX_SAFE_INTEGER?null:b,r.size===2){let R=[...r.keys()].map(V=>$(V).trim().toLowerCase()).sort(),G=[["false","true"],["no","yes"],["n","y"],["0","1"],["f","t"]].some(V=>R[0]===V[0]&&R[1]===V[1]),P=/^(is|has)[_a-z0-9]|(?:default|churn|fraud|approv|convert|active|cancel|delinquen|flag|paid|win|pass|fail)/i.test(t.name);(G||P)&&(t.isBinaryFlag=!0)}}t.dataType=="DateTime"&&(t.dateWithTime=E),t.isTemporal=Rt({dataType:t.dataType,name:t.name,isMeasure:t.isMeasure,distinctCount:r.size,minNum:typeof y=="number"?y:null,maxNum:typeof C=="number"?C:null,sampleValues:r.keys(),locale:i}),this.updateColumnStats10(m,t,s,r,M,C,y),this.updateColumnStats20(m,c,s,_,t,u,E,y,C,M,r,i),!t.isMeasure&&(t.dataType==="Integer"||t.dataType==="Decimal")&&rt({dataType:t.dataType,isMeasure:!1,name:t.name,distinct:r.size,nonblank:s,prec:M,maxval:typeof C=="number"?C:0,minval:typeof y=="number"?y:0})==="Continuous"&&(t.isMeasure=!0),n[o]=t.isMeasure||r.size>2e3?null:new Set(r.keys()),o++}let l=[];this._cols.forEach((t,r)=>{t.isMeasure||l.push({idx:r,distinct:t.distinctCount??0,name:t.name})}),this._cols.forEach((t,r)=>{if(!t.isMeasure)return;let c=typeof t.lowValue=="number"?t.lowValue:null,u=typeof t.highValue=="number"?t.highValue:null,s=Nt({rows:this._rows,measureColIdx:r,measureName:t.name,candidateDims:l,minNum:c,maxNum:u,discourageAgg:!!t.discourageAggregationAcrossGroups});t.additivity=s.additivity,s.partOfWholeDim&&(t.partOfWholeDim=s.partOfWholeDim)});let f=50,g=l.filter(t=>t.distinct>=2&&t.distinct<=f);this._cols.forEach((t,r)=>{if(!t.isMeasure)return;let c=[];for(let A of this._rows){let N=A[r];if(N==null||N==="")continue;let T=typeof N=="number"?N:parseFloat(N);isNaN(T)||c.push(T)}if(c.length===0)return;let u=[...c].sort((A,N)=>A-N),s=A=>u[Math.min(u.length-1,Math.max(0,Math.floor(A*(u.length-1))))],M=s(.5),y=s(.1),C=s(.9),_=Math.abs(M)>1e-9?Math.abs(M):Math.abs(u[u.length-1])>1e-9?Math.abs(u[u.length-1]):1;t.relativeDispersion=Math.round((C-y)/_*1e3)/1e3;let E=0;for(let A of c)E+=A;E/=c.length;let w=0;for(let A of c)w+=(A-E)*(A-E);if(w<=1e-12)return;let D=[];for(let A of g){let N=new Map;for(let b of this._rows){let R=b[r];if(R==null||R==="")continue;let v=typeof R=="number"?R:parseFloat(R);if(isNaN(v))continue;let G=this.STR(b[A.idx])+"",P=N.get(G);P?(P.s+=v,P.n++):N.set(G,{s:v,n:1})}let T=0;for(let b of N.values()){let R=b.s/b.n;T+=b.n*(R-E)*(R-E)}D.push({otherColumn:A.name,eta2:Math.round(T/w*1e4)/1e4})}D.length>0&&(t.groupDiscrimination=D)});let h=.97,S=5,p=this._cols.map((t,r)=>({c:t,i:r})).filter(t=>t.c.isMeasure);for(let t=0;t<p.length;t++)for(let r=t+1;r<p.length;r++){let c=p[t].i,u=p[r].i,s=0,M=0,y=0,C=0,_=0,E=0;for(let N of this._rows){let T=N[c],b=N[u];if(T==null||T===""||b===null||b===void 0||b==="")continue;let R=typeof T=="number"?T:parseFloat(T),v=typeof b=="number"?b:parseFloat(b);isNaN(R)||isNaN(v)||(s++,M+=R,y+=v,C+=R*R,_+=v*v,E+=R*v)}if(s<S)continue;let w=s*C-M*M,D=s*_-y*y;if(w<=1e-12||D<=1e-12)continue;let A=(s*E-M*y)/Math.sqrt(w*D);if(Math.abs(A)>=h){let N=p[t].c,T=p[r].c;N.collinearWithMeasures||(N.collinearWithMeasures=[]),T.collinearWithMeasures||(T.collinearWithMeasures=[]),N.collinearWithMeasures.push(T.name),T.collinearWithMeasures.push(N.name)}}for(let t=0;t<this._cols.length;t++){let r=n[t];if(!r||r.size===0)continue;let c=[];for(let u=0;u<this._cols.length;u++){if(u===t)continue;let s=n[u];if(!s||s.size===0)continue;let M=0;for(let C of r)s.has(C)&&M++;let y=Math.round(M/r.size*100);y>0&&c.push({otherColumn:this._cols[u].name,percentShared:y})}c.length>0&&(this._cols[t].sharedValueRatioWithOthers=c)}let I=50,d=[];for(let t=0;t<this._cols.length;t++){let r=n[t];r&&r.size>=2&&r.size<=I&&d.push(t)}if(d.length>=2){let t=new Map,r=(u,s)=>u+":"+s;for(let u=0;u<d.length;u++)for(let s=u+1;s<d.length;s++)t.set(r(d[u],d[s]),new Map);for(let u of this._rows)for(let s=0;s<d.length;s++){let M=this.STR(u[d[s]])+"";for(let y=s+1;y<d.length;y++){let C=""+this.STR(u[d[y]]),_=t.get(r(d[s],d[y])),E=M+""+C;_.set(E,(_.get(E)??0)+1)}}let c=new Map;for(let u=0;u<d.length;u++)for(let s=u+1;s<d.length;s++){let M=d[u],y=d[s],C=n[M].size,_=n[y].size,E=t.get(r(M,y)),w=E.size,D=0;for(let b of E.values())(D===0||b<D)&&(D=b);let A=Math.round(w/(C*_)*100),N=w===C,T=w===_;if((this._cols[M].categoricalPairStats||=[]).push({otherColumn:this._cols[y].name,fillPct:A,determinesOther:N,minCellCount:D,distinctCombinations:w}),(this._cols[y].categoricalPairStats||=[]).push({otherColumn:this._cols[M].name,fillPct:A,determinesOther:T,minCellCount:D,distinctCombinations:w}),N&&C>_){let b=c.get(M);(!b||_<b.card)&&c.set(M,{name:this._cols[y].name,card:_,ratio:_/C})}if(T&&_>C){let b=c.get(y);(!b||C<b.card)&&c.set(y,{name:this._cols[M].name,card:C,ratio:C/_})}}for(let[u,s]of c)this._cols[u].primaryParentColumn=s.name,this._cols[u].nestingRatio=Math.round(s.ratio*100)/100}return this._computedStatsForLevel=e,this._cols}updateColumnStats20(e,i,o,m,n,l,f,g,h,S,p,I){if(e>=20){let d=[...i].sort((c,u)=>c-u),t=Math.floor(d.length/2);if(o>0&&m!=null?n.avgValue=n.dataType=="Integer"?Math.round(m/o):m/o:n.avgValue=null,o>0&&(n.avgLength=l/o),this._rows.length>0&&(n.dataType!="DateTime"||f||!g?n.lowValue=g:n.lowValue=new Date(g).toISOString().slice(0,10)+"T00:00:00.000Z",n.dataType!="DateTime"||f||!h?n.highValue=h:n.highValue=new Date(h).toISOString().slice(0,10)+"T00:00:00.000Z",n.medianValue=d.length===0?null:d.length%2===0?n.dataType=="Integer"?Math.round((d[t-1]+d[t])/2):(d[t-1]+d[t])/2:d[t],n.numericPrecision=S),d.length>0){let c=n.avgValue??0,u=d.length,s=0,M=0;for(let C of d){let _=C-c;s+=_*_,M+=_*_*_}let y=s/u;n.skewness=y===0?0:M/u/Math.pow(Math.sqrt(y),3),n.stdDev=Math.sqrt(y)}m!==null&&(n.sum=m);let r=Array.from(p.entries()).sort((c,u)=>u[1]-c[1]);if(n.topCategories=r.slice(0,10).map(c=>c[1]),!n.isMeasure&&r.length>0){if(n.dataType==="String"){let c=r.map(s=>s[0]);n.formatSignature=j(c);let u=/^(UUID|EMAIL_LIKE|URL_LIKE|PHONE_LIKE|NUMERIC_ID|HEX_ID|OPAQUE_ID_ALPHANUMERIC|DATE_STR|BOOLEAN)$/;n.formatSignature&&!u.test(n.formatSignature)&&(n.avgLength===void 0||n.avgLength>=3)&&(n.isFreeText=!0)}else n.topCategoryValues=r.slice(0,5).map(c=>c[0]);if(e>=20){let c=r.map(s=>s[0]),u=H(c,I);if(u!==null)n.ordinalPattern=u.pattern,n.orderedDomain=u.orderedDomain;else if(n.dataType==="String"){let s=k(c);s!==null&&(n.safeDistinctValues=s)}}}if(d.length>=8&&(n.dataType==="Integer"||n.dataType==="Decimal")){let c=u=>d[Math.floor((d.length-1)*u)];n.quantiles={p05:c(.05),p25:c(.25),p75:c(.75),p95:c(.95)}}}if(!n.isMeasure&&p.size>0){let d=Array.from(p.entries()).sort((r,c)=>c[1]-r[1]),t=X(d.map(r=>r[0]),n.name,I);if(t!==null&&(n.geoKind=t.geoKind,n.geoMatchPct=t.geoMatchPct,t.geoAmbiguous&&(n.geoAmbiguous=!0),t.geoKind.indexOf("country")===0)){let r=B(d);r&&(n.dominantGeoRegion=r.dominantGeoRegion,n.dominantGeoRegionPct=r.dominantGeoRegionPct,n.geoRegionCount=r.regionCount)}}}updateColumnStats10(e,i,o,m,n,l,f){e>=10&&(i.blankCount=this._rows.length-o,i.distinctCount=m.size+(i.blankCount!=0?1:0),i.valueNature="Categorical",o>0&&(i.dataType==="Integer"||i.dataType==="Decimal"?i.valueNature=rt({dataType:i.dataType,isMeasure:!!i.isMeasure,name:i.name,distinct:m.size,nonblank:o,prec:n,maxval:l,minval:f}):i.dataType==="DateTime"&&(i.valueNature=i.dateWithTime?"Continuous":"Ordinal")))}getRowCount(){return this._rows.length}getLeafCardinality(){if(this._leafCardinality!==null)return this._leafCardinality;let e=[];if(this._cols.forEach((o,m)=>{o.isMeasure||e.push(m)}),e.length===0)return this._leafCardinality=this._rows.length,this._leafCardinality;let i=new Set;for(let o of this._rows)i.add(JSON.stringify(e.map(m=>o[m])));return this._leafCardinality=i.size,this._leafCardinality}_leafCardinality=null;getGeoExtent(){if(this._geoExtentComputed)return this._geoExtent;this._geoExtentComputed=!0,this._geoExtent=null;let e=l=>String(l||"").replace(/([a-z0-9])([A-Z])/g,"$1 $2").toLowerCase().split(/[^a-z]+/),i=-1,o=-1,m=-1;if(this._cols.forEach((l,f)=>{let g=e(l.name),h=l.dataType==="Integer"||l.dataType==="Decimal";h&&i<0&&g.some(S=>S==="lat"||S==="latitude")?i=f:h&&o<0&&g.some(S=>S==="lon"||S==="lng"||S==="long"||S==="longitude")&&(o=f),m<0&&!l.isMeasure&&typeof l.geoKind=="string"&&l.geoKind.indexOf("country")===0&&(m=f)}),i<0||o<0)return null;let n=[];for(let l of this._rows){let f=l[i],g=l[o],h=f==null||f===""?null:Number(f),S=g==null||g===""?null:Number(g);n.push({lat:h,lon:S,country:m>=0&&F(this.STR(l[m]))?this.STR(l[m]):null})}return this._geoExtent=nt(n),this._geoExtent}_geoExtent=null;_geoExtentComputed=!1;obfuscateString(e){let i="abcdefghijklmnopqrstuvwxyz",o=()=>i[Math.floor(L()*i.length)],m=()=>o().toUpperCase(),n=()=>Math.floor(L()*10).toString(),l=t=>/[A-Z]/.test(t)?m():/[a-z]/.test(t)?o():/[0-9]/.test(t)?n():t,f=e.includes("@")&&e.includes("."),g=f?e.split("@"):[e],h=f?g[1]:"",S=h.endsWith(".com"),p=S?".com":"",I=S?h.slice(0,-4):h,d=t=>{let r="";for(let c of t)r+=l(c),/[a-zA-Z0-9]/.test(c)&&L()<.2&&(r+=l(c));if(r.length>6){let c=Math.floor(L()*Math.min(3,r.length-6));for(let u=0;u<c;u++){let s=0;for(;s<5;){let M=Math.floor(L()*r.length);if(/[a-zA-Z0-9]/.test(r[M])){r=r.slice(0,M)+r.slice(M+1);break}s++}}}return r};if(f){let t=d(g[0]),r=d(I);return`${t}@${r}${p}`}else return d(e)}toObjectArray(){return this._rows.map(e=>{let i={};return this._cols.forEach((o,m)=>{i[o.name]=e[m]}),i})}async getCSVAsync(e){let i=[],o=e?25:1e7,m=e?4e3:1e7,n=new Map;for(let f of this._rows){let g={};for(let h=0;h<this._cols.length;h++){let S=this._cols[h],p=f[h];if(this.STR(p)!=""){if(e&&S.dataType=="String")if(n.has(p))p=n.get(p);else{let I=this.obfuscateString(p);n.set(p,I),p=I}else S.dataType=="DateTime"&&!S.dateWithTime&&(p=new Date(p).toISOString().slice(0,10)+"T00:00:00.000Z");m-=this.STR(p).length}else p=null;g[h]=p,--m}if(i.push(g),--o,o<=0||m<=0)break}return await it.unparse(i,{header:!1})}getCSVHeaderLine(){return it.unparse([this._cols.map(e=>this.STR(e.name))])}addRow(e,i){if(this.dedupRows){let o="";for(let n of e)o+=this.STR(n)+"~";let m=Q(o);if(this._rowHashes.has(m))return!1;this._rowHashes.add(m)}return this._rows.push(e),this._origIndices.push(i??-1),!0}getOriginalRowIndex(e){return e<0||e>=this._origIndices.length?-1:this._origIndices[e]}reset(){this._cols=[],this._rows=[],this._origIndices=[],this._rowHashes=new Set,this._leafCardinality=null}setColumns(e){this._cols=e}};export{nt as a,ut as b,F as c,At as d,Mt as e,Rt as f,Tt as g,Nt as h,rt as i,st as j};
|