@d3plus/docs 3.0.0-alpha.3
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/.storybook/main.js +51 -0
- package/.storybook/manager-head.html +46 -0
- package/.storybook/manager.js +10 -0
- package/.storybook/preview-head.html +69 -0
- package/.storybook/preview.jsx +134 -0
- package/.storybook/theme.js +16 -0
- package/README.md +1 -0
- package/args/color/colorAdd.args.jsx +71 -0
- package/args/color/colorAssign.args.jsx +40 -0
- package/args/color/colorContrast.args.jsx +40 -0
- package/args/color/colorDefaults.args.jsx +8 -0
- package/args/color/colorLegible.args.jsx +24 -0
- package/args/color/colorLighter.args.jsx +40 -0
- package/args/color/colorSubtract.args.jsx +71 -0
- package/args/core/charts/AreaPlot.args.jsx +72 -0
- package/args/core/charts/BarChart.args.jsx +88 -0
- package/args/core/charts/BoxWhisker.args.jsx +73 -0
- package/args/core/charts/BumpChart.args.jsx +133 -0
- package/args/core/charts/Donut.args.jsx +58 -0
- package/args/core/charts/Geomap.args.jsx +363 -0
- package/args/core/charts/LinePlot.args.jsx +57 -0
- package/args/core/charts/Matrix.args.jsx +194 -0
- package/args/core/charts/Network.args.jsx +310 -0
- package/args/core/charts/Pack.args.jsx +171 -0
- package/args/core/charts/Pie.args.jsx +148 -0
- package/args/core/charts/Plot.args.jsx +685 -0
- package/args/core/charts/Priestley.args.jsx +118 -0
- package/args/core/charts/Radar.args.jsx +120 -0
- package/args/core/charts/RadialMatrix.args.jsx +197 -0
- package/args/core/charts/Rings.args.jsx +228 -0
- package/args/core/charts/Sankey.args.jsx +248 -0
- package/args/core/charts/StackedArea.args.jsx +26 -0
- package/args/core/charts/Tree.args.jsx +88 -0
- package/args/core/charts/Treemap.args.jsx +181 -0
- package/args/core/charts/Viz.args.jsx +1383 -0
- package/args/core/components/Axis.args.jsx +600 -0
- package/args/core/components/AxisBottom.args.jsx +42 -0
- package/args/core/components/AxisLeft.args.jsx +42 -0
- package/args/core/components/AxisRight.args.jsx +42 -0
- package/args/core/components/AxisTop.args.jsx +42 -0
- package/args/core/components/ColorScale.args.jsx +456 -0
- package/args/core/components/Legend.args.jsx +289 -0
- package/args/core/components/TextBox.args.jsx +554 -0
- package/args/core/components/Timeline.args.jsx +401 -0
- package/args/core/components/Tooltip.args.jsx +453 -0
- package/args/core/shapes/Area.args.jsx +190 -0
- package/args/core/shapes/Bar.args.jsx +176 -0
- package/args/core/shapes/Box.args.jsx +248 -0
- package/args/core/shapes/Circle.args.jsx +84 -0
- package/args/core/shapes/Image.args.jsx +177 -0
- package/args/core/shapes/Line.args.jsx +127 -0
- package/args/core/shapes/Path.args.jsx +84 -0
- package/args/core/shapes/Rect.args.jsx +85 -0
- package/args/core/shapes/Shape.args.jsx +633 -0
- package/args/core/shapes/Whisker.args.jsx +204 -0
- package/args/core/utils/BaseClass.args.jsx +65 -0
- package/args/core/utils/RESET.args.jsx +8 -0
- package/args/core/utils/accessor.args.jsx +39 -0
- package/args/core/utils/configPrep.args.jsx +56 -0
- package/args/core/utils/constant.args.jsx +24 -0
- package/args/core/utils/uuid.args.jsx +8 -0
- package/args/data/dataConcat.args.jsx +40 -0
- package/args/data/dataFold.args.jsx +56 -0
- package/args/data/dataLoad.args.jsx +65 -0
- package/args/data/isData.args.jsx +24 -0
- package/args/data/merge.args.jsx +39 -0
- package/args/data/unique.args.jsx +37 -0
- package/args/dom/assign.args.jsx +23 -0
- package/args/dom/attrize.args.jsx +39 -0
- package/args/dom/date.args.jsx +23 -0
- package/args/dom/elem.args.jsx +135 -0
- package/args/dom/fontExists.args.jsx +24 -0
- package/args/dom/htmlDecode.args.jsx +23 -0
- package/args/dom/isObject.args.jsx +23 -0
- package/args/dom/parseSides.args.jsx +24 -0
- package/args/dom/prefix.args.jsx +8 -0
- package/args/dom/rtl.args.jsx +8 -0
- package/args/dom/stylize.args.jsx +39 -0
- package/args/dom/textWidth.args.jsx +39 -0
- package/args/export/saveElement.args.jsx +99 -0
- package/args/format/format.args.jsx +24 -0
- package/args/format/formatAbbreviate.args.jsx +39 -0
- package/args/format/formatDate.args.jsx +53 -0
- package/args/format/formatDefaultLocale.args.jsx +24 -0
- package/args/locales/dictionaries/formatLocale.args.jsx +8 -0
- package/args/math/closest.args.jsx +39 -0
- package/args/math/largestRect.args.jsx +56 -0
- package/args/math/lineIntersection.args.jsx +69 -0
- package/args/math/path2polygon.args.jsx +40 -0
- package/args/math/pointDistance.args.jsx +39 -0
- package/args/math/pointDistanceSquared.args.jsx +39 -0
- package/args/math/pointRotate.args.jsx +55 -0
- package/args/math/polygonInside.args.jsx +39 -0
- package/args/math/polygonRayCast.args.jsx +55 -0
- package/args/math/polygonRotate.args.jsx +55 -0
- package/args/math/segmentBoxContains.args.jsx +54 -0
- package/args/math/segmentsIntersect.args.jsx +69 -0
- package/args/math/shapeEdgePoint.args.jsx +39 -0
- package/args/react/D3plusContext.args.jsx +8 -0
- package/args/react/Renderer.args.jsx +53 -0
- package/args/text/fontFamily.args.jsx +8 -0
- package/args/text/fontFamilyStringify.args.jsx +23 -0
- package/args/text/stringify.args.jsx +23 -0
- package/args/text/strip.args.jsx +38 -0
- package/args/text/textSplit.args.jsx +23 -0
- package/args/text/textWrap.args.jsx +8 -0
- package/args/text/titleCase.args.jsx +24 -0
- package/args/text/trim.args.jsx +23 -0
- package/args/text/trimLeft.args.jsx +23 -0
- package/args/text/trimRight.args.jsx +23 -0
- package/docs/Accessibility.mdx +70 -0
- package/docs/HomeChart.jsx +38 -0
- package/docs/Introduction.mdx +130 -0
- package/docs/Logo-Frames.js +352 -0
- package/docs/Logo.jsx +30 -0
- package/helpers/configify.js +18 -0
- package/helpers/funcify.js +14 -0
- package/helpers/stringify.js +30 -0
- package/package.json +44 -0
- package/packages/color/colorAdd.stories.jsx +23 -0
- package/packages/color/colorAssign.stories.jsx +23 -0
- package/packages/color/colorContrast.stories.jsx +23 -0
- package/packages/color/colorDefaults.stories.jsx +23 -0
- package/packages/color/colorLegible.stories.jsx +23 -0
- package/packages/color/colorLighter.stories.jsx +23 -0
- package/packages/color/colorSubtract.stories.jsx +23 -0
- package/packages/core/charts/AreaPlot.stories.jsx +74 -0
- package/packages/core/charts/BarChart.stories.jsx +307 -0
- package/packages/core/charts/BoxWhisker.stories.jsx +204 -0
- package/packages/core/charts/BumpChart.stories.jsx +52 -0
- package/packages/core/charts/Donut.stories.jsx +41 -0
- package/packages/core/charts/Geomap.stories.jsx +186 -0
- package/packages/core/charts/LinePlot.stories.jsx +564 -0
- package/packages/core/charts/Matrix.stories.jsx +36 -0
- package/packages/core/charts/Network.stories.jsx +99 -0
- package/packages/core/charts/Pack.stories.jsx +40 -0
- package/packages/core/charts/Pie.stories.jsx +40 -0
- package/packages/core/charts/Plot.stories.jsx +180 -0
- package/packages/core/charts/Priestley.stories.jsx +60 -0
- package/packages/core/charts/Radar.stories.jsx +60 -0
- package/packages/core/charts/RadialMatrix.stories.jsx +36 -0
- package/packages/core/charts/Rings.stories.jsx +41 -0
- package/packages/core/charts/Sankey.stories.jsx +41 -0
- package/packages/core/charts/StackedArea.stories.jsx +107 -0
- package/packages/core/charts/Tree.stories.jsx +27 -0
- package/packages/core/charts/Treemap.stories.jsx +81 -0
- package/packages/core/charts/Viz.stories.jsx +27 -0
- package/packages/core/components/Axis.stories.jsx +27 -0
- package/packages/core/components/AxisBottom.stories.jsx +27 -0
- package/packages/core/components/AxisLeft.stories.jsx +27 -0
- package/packages/core/components/AxisRight.stories.jsx +27 -0
- package/packages/core/components/AxisTop.stories.jsx +27 -0
- package/packages/core/components/ColorScale.stories.jsx +44 -0
- package/packages/core/components/Legend.stories.jsx +49 -0
- package/packages/core/components/TextBox.stories.jsx +222 -0
- package/packages/core/components/Timeline.stories.jsx +37 -0
- package/packages/core/components/Tooltip.stories.jsx +40 -0
- package/packages/core/shapes/Area.stories.jsx +27 -0
- package/packages/core/shapes/Bar.stories.jsx +27 -0
- package/packages/core/shapes/Box.stories.jsx +27 -0
- package/packages/core/shapes/Circle.stories.jsx +27 -0
- package/packages/core/shapes/Image.stories.jsx +27 -0
- package/packages/core/shapes/Line.stories.jsx +27 -0
- package/packages/core/shapes/Path.stories.jsx +27 -0
- package/packages/core/shapes/Rect.stories.jsx +27 -0
- package/packages/core/shapes/Shape.stories.jsx +27 -0
- package/packages/core/shapes/Whisker.stories.jsx +27 -0
- package/packages/core/utils/BaseClass.stories.jsx +27 -0
- package/packages/core/utils/RESET.stories.jsx +23 -0
- package/packages/core/utils/accessor.stories.jsx +23 -0
- package/packages/core/utils/configPrep.stories.jsx +23 -0
- package/packages/core/utils/constant.stories.jsx +23 -0
- package/packages/core/utils/uuid.stories.jsx +23 -0
- package/packages/data/dataConcat.stories.jsx +23 -0
- package/packages/data/dataFold.stories.jsx +23 -0
- package/packages/data/dataLoad.stories.jsx +23 -0
- package/packages/data/isData.stories.jsx +23 -0
- package/packages/data/merge.stories.jsx +23 -0
- package/packages/data/unique.stories.jsx +23 -0
- package/packages/dom/assign.stories.jsx +23 -0
- package/packages/dom/attrize.stories.jsx +23 -0
- package/packages/dom/date.stories.jsx +23 -0
- package/packages/dom/elem.stories.jsx +23 -0
- package/packages/dom/fontExists.stories.jsx +23 -0
- package/packages/dom/htmlDecode.stories.jsx +23 -0
- package/packages/dom/isObject.stories.jsx +23 -0
- package/packages/dom/parseSides.stories.jsx +23 -0
- package/packages/dom/prefix.stories.jsx +23 -0
- package/packages/dom/rtl.stories.jsx +23 -0
- package/packages/dom/stylize.stories.jsx +23 -0
- package/packages/dom/textWidth.stories.jsx +23 -0
- package/packages/export/saveElement.stories.jsx +23 -0
- package/packages/format/format.stories.jsx +23 -0
- package/packages/format/formatAbbreviate.stories.jsx +23 -0
- package/packages/format/formatDate.stories.jsx +23 -0
- package/packages/format/formatDefaultLocale.stories.jsx +23 -0
- package/packages/locales/dictionaries/formatLocale.stories.jsx +23 -0
- package/packages/math/closest.stories.jsx +23 -0
- package/packages/math/largestRect.stories.jsx +23 -0
- package/packages/math/lineIntersection.stories.jsx +23 -0
- package/packages/math/path2polygon.stories.jsx +23 -0
- package/packages/math/pointDistance.stories.jsx +23 -0
- package/packages/math/pointDistanceSquared.stories.jsx +23 -0
- package/packages/math/pointRotate.stories.jsx +23 -0
- package/packages/math/polygonInside.stories.jsx +23 -0
- package/packages/math/polygonRayCast.stories.jsx +23 -0
- package/packages/math/polygonRotate.stories.jsx +23 -0
- package/packages/math/segmentBoxContains.stories.jsx +23 -0
- package/packages/math/segmentsIntersect.stories.jsx +23 -0
- package/packages/math/shapeEdgePoint.stories.jsx +23 -0
- package/packages/react/D3plusContext.stories.jsx +23 -0
- package/packages/react/Renderer.stories.jsx +23 -0
- package/packages/text/fontFamily.stories.jsx +23 -0
- package/packages/text/fontFamilyStringify.stories.jsx +23 -0
- package/packages/text/stringify.stories.jsx +23 -0
- package/packages/text/strip.stories.jsx +23 -0
- package/packages/text/textSplit.stories.jsx +23 -0
- package/packages/text/textWrap.stories.jsx +23 -0
- package/packages/text/titleCase.stories.jsx +23 -0
- package/packages/text/trim.stories.jsx +23 -0
- package/packages/text/trimLeft.stories.jsx +23 -0
- package/packages/text/trimRight.stories.jsx +23 -0
- package/static/data/city_coords.json +224 -0
- package/static/images/favicon.ico +0 -0
- package/static/images/touchicon.png +0 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/react/Renderer.args";
|
|
7
|
+
import {Renderer} from "@d3plus/react";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "React/Renderer",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/fontFamily.args";
|
|
7
|
+
import {fontFamily} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/fontFamily",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "The default fallback font list used for all text labels as an Array of Strings.",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/fontFamilyStringify.args";
|
|
7
|
+
import {fontFamilyStringify} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/fontFamilyStringify",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Converts an Array of font-family names into a CSS font-family string.",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/stringify.args";
|
|
7
|
+
import {stringify} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/stringify",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Coerces value into a String.",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/strip.args";
|
|
7
|
+
import {strip} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/strip",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Removes all non ASCII characters from a string.",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/textSplit.args";
|
|
7
|
+
import {textSplit} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/textSplit",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Splits a given sentence into an array of words.",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/textWrap.args";
|
|
7
|
+
import {textWrap} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/textWrap",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Based on the defined styles and dimensions, breaks a string into an array of strings for each line of text.",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/titleCase.args";
|
|
7
|
+
import {titleCase} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/titleCase",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Capitalizes the first letter of each word in a phrase/sentence.",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/trim.args";
|
|
7
|
+
import {trim} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/trim",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Cross-browser implementation of [trim](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim).",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/trimLeft.args";
|
|
7
|
+
import {trimLeft} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/trimLeft",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Cross-browser implementation of [trimLeft](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimLeft).",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// WARNING: do not edit the top part of this file directly, it is generated
|
|
2
|
+
// from the source code. Scroll down to the next WARNING and places stories below it.
|
|
3
|
+
|
|
4
|
+
import React from "react";
|
|
5
|
+
|
|
6
|
+
import {argTypes} from "../../args/text/trimRight.args";
|
|
7
|
+
import {trimRight} from "@d3plus/text";
|
|
8
|
+
|
|
9
|
+
export default {
|
|
10
|
+
title: "Text/trimRight",
|
|
11
|
+
argTypes,
|
|
12
|
+
parameters: {
|
|
13
|
+
docs: {
|
|
14
|
+
description: {
|
|
15
|
+
component: "Cross-browser implementation of [trimRight](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/TrimRight).",
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
}
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// WARNING: do not edit above this line of code directly, it is generated
|
|
22
|
+
// from the source code. Stories below this line can be modified.
|
|
23
|
+
|
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
[
|
|
2
|
+
{"city": "Ada", "dma_code": 657, "latitude": 34.774531000000003, "longitude": -96.678344899999999, "region": "OK", "slug": "ada-ok"},
|
|
3
|
+
{"city": "Akron", "dma_code": 510, "latitude": 41.081444699999999, "longitude": -81.519005300000003, "region": "OH", "slug": "akron-oh"},
|
|
4
|
+
{"city": "Albany", "dma_code": 525, "latitude": 31.578507399999999, "longitude": -84.155741000000006, "region": "GA", "slug": "albany-ga"},
|
|
5
|
+
{"city": "Alexandria", "dma_code": 644, "latitude": 31.311293599999999, "longitude": -92.445137099999997, "region": "LA", "slug": "alexandria-la"},
|
|
6
|
+
{"city": "Alpena", "dma_code": 583, "latitude": 45.061679400000003, "longitude": -83.432752800000003, "region": "MI", "slug": "alpena-mi"},
|
|
7
|
+
{"city": "Altoona", "dma_code": 574, "latitude": 40.5186809, "longitude": -78.394735900000001, "region": "PA", "slug": "altoona-pa"},
|
|
8
|
+
{"city": "Amarillo", "dma_code": 634, "latitude": 35.221997100000003, "longitude": -101.8312969, "region": "TX", "slug": "amarillo-tx"},
|
|
9
|
+
{"city": "Ames", "dma_code": 679, "latitude": 42.023350000000001, "longitude": -93.625622000000007, "region": "IA", "slug": "ames-ia"},
|
|
10
|
+
{"city": "Anderson", "dma_code": 567, "latitude": 34.503439399999998, "longitude": -82.650133199999999, "region": "SC", "slug": "anderson-sc"},
|
|
11
|
+
{"city": "Appleton", "dma_code": 658, "latitude": 44.261930900000003, "longitude": -88.415384700000004, "region": "WI", "slug": "appleton-wi"},
|
|
12
|
+
{"city": "Atlanta", "dma_code": 524, "latitude": 33.748995399999998, "longitude": -84.387982399999999, "region": "GA", "slug": "atlanta-ga"},
|
|
13
|
+
{"city": "Auburn", "dma_code": 500, "latitude": 44.097850899999997, "longitude": -70.231165500000003, "region": "ME", "slug": "auburn-me"},
|
|
14
|
+
{"city": "Augusta", "dma_code": 520, "latitude": 33.469999999999999, "longitude": -81.974999999999994, "region": "GA", "slug": "augusta-ga"},
|
|
15
|
+
{"city": "Austin", "dma_code": 611, "latitude": 43.6666296, "longitude": -92.974636700000005, "region": "MN", "slug": "austin-mn"},
|
|
16
|
+
{"city": "Austin", "dma_code": 635, "latitude": 30.267153, "longitude": -97.743060799999995, "region": "TX", "slug": "austin-tx"},
|
|
17
|
+
{"city": "Bakersfield", "dma_code": 800, "latitude": 35.3732921, "longitude": -119.01871250000001, "region": "CA", "slug": "bakersfield-ca"},
|
|
18
|
+
{"city": "Baltimore", "dma_code": 512, "latitude": 39.290384799999998, "longitude": -76.612189299999997, "region": "MD", "slug": "baltimore-md"},
|
|
19
|
+
{"city": "Bangor", "dma_code": 537, "latitude": 44.801182099999998, "longitude": -68.777813800000004, "region": "ME", "slug": "bangor-me"},
|
|
20
|
+
{"city": "Baton Rouge", "dma_code": 716, "latitude": 30.450746200000001, "longitude": -91.154550999999998, "region": "LA", "slug": "baton-rouge-la"},
|
|
21
|
+
{"city": "Battle Creek", "dma_code": 563, "latitude": 42.3211522, "longitude": -85.179714200000006, "region": "MI", "slug": "battle-creek-mi"},
|
|
22
|
+
{"city": "Bay City", "dma_code": 513, "latitude": 43.594467700000003, "longitude": -83.888864699999999, "region": "MI", "slug": "bay-city-mi"},
|
|
23
|
+
{"city": "Bend", "dma_code": 821, "latitude": 44.058172800000001, "longitude": -121.31530960000001, "region": "OR", "slug": "bend-or"},
|
|
24
|
+
{"city": "Billings", "dma_code": 756, "latitude": 45.783285599999999, "longitude": -108.5006904, "region": "MT", "slug": "billings-mt"},
|
|
25
|
+
{"city": "Binghamton", "dma_code": 502, "latitude": 42.098686700000002, "longitude": -75.917973799999999, "region": "NY", "slug": "binghamton-ny"},
|
|
26
|
+
{"city": "Birmingham", "dma_code": 630, "latitude": 33.520660800000002, "longitude": -86.802490000000006, "region": "AL", "slug": "birmingham-al"},
|
|
27
|
+
{"city": "Bloomington", "dma_code": 675, "latitude": 40.484202699999997, "longitude": -88.993687300000005, "region": "IL", "slug": "bloomington-il"},
|
|
28
|
+
{"city": "Boise", "dma_code": 757, "latitude": 43.613739000000002, "longitude": -116.237651, "region": "ID", "slug": "boise-id"},
|
|
29
|
+
{"city": "Bowling Green", "dma_code": 736, "latitude": 36.990319900000003, "longitude": -86.443601799999996, "region": "KY", "slug": "bowling-green-ky"},
|
|
30
|
+
{"city": "Bozeman", "dma_code": 754, "latitude": 45.683459999999997, "longitude": -111.050499, "region": "MT", "slug": "bozeman-mt"},
|
|
31
|
+
{"city": "Bryan", "dma_code": 625, "latitude": 30.674364300000001, "longitude": -96.369963200000001, "region": "TX", "slug": "bryan-tx"},
|
|
32
|
+
{"city": "Buffalo", "dma_code": 514, "latitude": 42.886446800000002, "longitude": -78.878368899999998, "region": "NY", "slug": "buffalo-ny"},
|
|
33
|
+
{"city": "Cadillac", "dma_code": 540, "latitude": 44.251952600000003, "longitude": -85.401161900000005, "region": "MI", "slug": "cadillac-mi"},
|
|
34
|
+
{"city": "Canton", "dma_code": 510, "latitude": 40.798947300000002, "longitude": -81.378446999999994, "region": "OH", "slug": "canton-oh"},
|
|
35
|
+
{"city": "Champaign", "dma_code": 648, "latitude": 39.8403147, "longitude": -88.9548001, "region": "IL", "slug": "champaign-il"},
|
|
36
|
+
{"city": "Charleston", "dma_code": 519, "latitude": 32.776565599999998, "longitude": -79.930921600000005, "region": "SC", "slug": "charleston-sc"},
|
|
37
|
+
{"city": "Charlotte", "dma_code": 517, "latitude": 35.227086900000003, "longitude": -80.843126699999999, "region": "NC", "slug": "charlotte-nc"},
|
|
38
|
+
{"city": "Charlottesville", "dma_code": 584, "latitude": 38.029305899999997, "longitude": -78.476678100000001, "region": "VA", "slug": "charlottesville-va"},
|
|
39
|
+
{"city": "Chattanooga", "dma_code": 575, "latitude": 35.045629699999999, "longitude": -85.309680099999994, "region": "TN", "slug": "chattanooga-tn"},
|
|
40
|
+
{"city": "Chicago", "dma_code": 602, "latitude": 41.850033000000003, "longitude": -87.650052299999999, "region": "IL", "slug": "chicago-il"},
|
|
41
|
+
{"city": "Cincinnati", "dma_code": 515, "latitude": 39.136111100000001, "longitude": -84.503055599999996, "region": "OH", "slug": "cincinnati-oh"},
|
|
42
|
+
{"city": "Cities", "dma_code": 531, "latitude": 36.472723000000002, "longitude": -82.410686200000001, "region": "TN-VA", "slug": "cities-tn-va"},
|
|
43
|
+
{"city": "Columbia", "dma_code": 546, "latitude": 34.000710400000003, "longitude": -81.034814400000002, "region": "SC", "slug": "columbia-sc"},
|
|
44
|
+
{"city": "Columbus", "dma_code": 522, "latitude": 32.4609764, "longitude": -84.9877094, "region": "GA", "slug": "columbus-ga"},
|
|
45
|
+
{"city": "Columbus", "dma_code": 535, "latitude": 39.961175500000003, "longitude": -82.998794200000006, "region": "OH", "slug": "columbus-oh"},
|
|
46
|
+
{"city": "Corpus Christi", "dma_code": 600, "latitude": 27.800582800000001, "longitude": -97.396381000000005, "region": "TX", "slug": "corpus-christi-tx"},
|
|
47
|
+
{"city": "Dayton", "dma_code": 542, "latitude": 39.758947800000001, "longitude": -84.191606899999996, "region": "OH", "slug": "dayton-oh"},
|
|
48
|
+
{"city": "Decatur", "dma_code": 691, "latitude": 34.605925300000003, "longitude": -86.983341699999997, "region": "AL", "slug": "decatur-al"},
|
|
49
|
+
{"city": "Decatur;", "dma_code": 648, "latitude": 39.8403147, "longitude": -88.9548001, "region": "IL", "slug": "decatur-il"},
|
|
50
|
+
{"city": "Denver", "dma_code": 751, "latitude": 39.739153600000002, "longitude": -104.9847034, "region": "CO", "slug": "denver-co"},
|
|
51
|
+
{"city": "Detroit", "dma_code": 505, "latitude": 42.331426999999998, "longitude": -83.0457538, "region": "MI", "slug": "detroit-mi"},
|
|
52
|
+
{"city": "Dickinson", "dma_code": 687, "latitude": 46.879175600000003, "longitude": -102.78962420000001, "region": "ND", "slug": "dickinson-nd"},
|
|
53
|
+
{"city": "Dothan", "dma_code": 606, "latitude": 31.223231299999998, "longitude": -85.3904888, "region": "AL", "slug": "dothan-al"},
|
|
54
|
+
{"city": "Durham", "dma_code": 560, "latitude": 35.994032900000001, "longitude": -78.898618999999997, "region": "NC", "slug": "durham-nc"},
|
|
55
|
+
{"city": "Eau Claire", "dma_code": 702, "latitude": 44.811349, "longitude": -91.498494100000002, "region": "WI", "slug": "eau-claire-wi"},
|
|
56
|
+
{"city": "El Centro", "dma_code": 771, "latitude": 32.792000000000002, "longitude": -115.56305140000001, "region": "CA", "slug": "el-centro-ca"},
|
|
57
|
+
{"city": "El Dorado", "dma_code": 628, "latitude": 33.210973, "longitude": -92.665901, "region": "AR", "slug": "el-dorado-ar"},
|
|
58
|
+
{"city": "El Paso", "dma_code": 765, "latitude": 31.758719800000001, "longitude": -106.4869314, "region": "TX", "slug": "el-paso-tx"},
|
|
59
|
+
{"city": "Elkhart", "dma_code": 588, "latitude": 41.681993499999997, "longitude": -85.9766671, "region": "IN", "slug": "elkhart-in"},
|
|
60
|
+
{"city": "Elmira", "dma_code": 565, "latitude": 42.089796499999999, "longitude": -76.807733799999994, "region": "NY", "slug": "elmira-ny"},
|
|
61
|
+
{"city": "Erie", "dma_code": 516, "latitude": 42.129224100000002, "longitude": -80.085059000000001, "region": "PA", "slug": "erie-pa"},
|
|
62
|
+
{"city": "Eugene", "dma_code": 801, "latitude": 44.052069099999997, "longitude": -123.08675359999999, "region": "OR", "slug": "eugene-or"},
|
|
63
|
+
{"city": "Eureka", "dma_code": 802, "latitude": 40.8020712, "longitude": -124.16367289999999, "region": "CA", "slug": "eureka-ca"},
|
|
64
|
+
{"city": "Evansville", "dma_code": 649, "latitude": 37.974764399999998, "longitude": -87.5558482, "region": "IN", "slug": "evansville-in"},
|
|
65
|
+
{"city": "Fayetteville", "dma_code": 560, "latitude": 35.052664100000001, "longitude": -78.878358500000004, "region": "NC", "slug": "fayetteville-nc"},
|
|
66
|
+
{"city": "Florence", "dma_code": 691, "latitude": 34.799810000000001, "longitude": -87.677250999999998, "region": "AL", "slug": "florence-al"},
|
|
67
|
+
{"city": "Ft. Lauderdale", "dma_code": 528, "latitude": 26.122308400000001, "longitude": -80.143378600000005, "region": "FL", "slug": "ft-lauderdale-fl"},
|
|
68
|
+
{"city": "Ft. Pierce", "dma_code": 548, "latitude": 27.446705600000001, "longitude": -80.325605600000003, "region": "FL", "slug": "ft-pierce-fl"},
|
|
69
|
+
{"city": "Ft. Walton Beach", "dma_code": 686, "latitude": 30.405755200000002, "longitude": -86.618842000000001, "region": "FL", "slug": "ft-walton-beach-fl"},
|
|
70
|
+
{"city": "Ft. Wayne", "dma_code": 509, "latitude": 41.130604099999999, "longitude": -85.128859700000007, "region": "IN", "slug": "ft-wayne-in"},
|
|
71
|
+
{"city": "Ft. Worth", "dma_code": 623, "latitude": 32.725408999999999, "longitude": -97.320849600000003, "region": "TX", "slug": "ft-worth-tx"},
|
|
72
|
+
{"city": "Gainesville", "dma_code": 592, "latitude": 29.651634399999999, "longitude": -82.324826200000004, "region": "FL", "slug": "gainesville-fl"},
|
|
73
|
+
{"city": "Glendive", "dma_code": 798, "latitude": 47.108491000000001, "longitude": -104.710419, "region": "MT", "slug": "glendive-mt"},
|
|
74
|
+
{"city": "Great Falls", "dma_code": 755, "latitude": 47.500235400000001, "longitude": -111.3008083, "region": "MT", "slug": "great-falls-mt"},
|
|
75
|
+
{"city": "Greenville", "dma_code": 647, "latitude": 33.410116100000003, "longitude": -91.061773500000001, "region": "MS", "slug": "greenville-ms"},
|
|
76
|
+
{"city": "Gulfport", "dma_code": 746, "latitude": 30.3674198, "longitude": -89.0928155, "region": "MS", "slug": "gulfport-ms"},
|
|
77
|
+
{"city": "Hagerstown", "dma_code": 511, "latitude": 39.641762900000003, "longitude": -77.719993200000005, "region": "MD", "slug": "hagerstown-md"},
|
|
78
|
+
{"city": "Harrisonburg", "dma_code": 569, "latitude": 38.449568800000002, "longitude": -78.8689155, "region": "VA", "slug": "harrisonburg-va"},
|
|
79
|
+
{"city": "Hartford", "dma_code": 533, "latitude": 41.763711100000002, "longitude": -72.685093199999997, "region": "CT", "slug": "hartford-ct"},
|
|
80
|
+
{"city": "Helena", "dma_code": 766, "latitude": 46.595804999999999, "longitude": -112.02703099999999, "region": "MT", "slug": "helena-mt"},
|
|
81
|
+
{"city": "Holyoke", "dma_code": 543, "latitude": 42.204258600000003, "longitude": -72.616200899999995, "region": "MA", "slug": "holyoke-ma"},
|
|
82
|
+
{"city": "Houston", "dma_code": 618, "latitude": 29.762884400000001, "longitude": -95.383061499999997, "region": "TX", "slug": "houston-tx"},
|
|
83
|
+
{"city": "Huntington", "dma_code": 564, "latitude": 38.419249600000001, "longitude": -82.445154000000002, "region": "WV", "slug": "huntington-wv"},
|
|
84
|
+
{"city": "Hutchinson", "dma_code": 678, "latitude": 38.060844500000002, "longitude": -97.929774300000005, "region": "KS", "slug": "hutchinson-ks"},
|
|
85
|
+
{"city": "Indianapolis", "dma_code": 527, "latitude": 39.768376500000002, "longitude": -86.158042300000005, "region": "IN", "slug": "indianapolis-in"},
|
|
86
|
+
{"city": "Iowa City", "dma_code": 637, "latitude": 41.677204000000003, "longitude": -91.5162792, "region": "IA", "slug": "iowa-city-ia"},
|
|
87
|
+
{"city": "Jackson", "dma_code": 639, "latitude": 35.614516899999998, "longitude": -88.813946900000005, "region": "TN", "slug": "jackson-tn"},
|
|
88
|
+
{"city": "Jackson", "dma_code": 718, "latitude": 32.298757299999998, "longitude": -90.184810299999995, "region": "MS", "slug": "jackson-ms"},
|
|
89
|
+
{"city": "Jacksonville", "dma_code": 561, "latitude": 30.332183799999999, "longitude": -81.655651000000006, "region": "FL", "slug": "jacksonville-fl"},
|
|
90
|
+
{"city": "Jefferson City", "dma_code": 604, "latitude": 38.576701700000001, "longitude": -92.173516399999997, "region": "MO", "slug": "jefferson-city-mo"},
|
|
91
|
+
{"city": "Jonesboro", "dma_code": 734, "latitude": 35.842296699999999, "longitude": -90.704279, "region": "AR", "slug": "jonesboro-ar"},
|
|
92
|
+
{"city": "Kansas City", "dma_code": 616, "latitude": 39.099726500000003, "longitude": -94.578566699999996, "region": "MO", "slug": "kansas-city-mo"},
|
|
93
|
+
{"city": "Kearney", "dma_code": 722, "latitude": 40.699959, "longitude": -99.083106999999998, "region": "NE", "slug": "kearney-ne"},
|
|
94
|
+
{"city": "Kennewick", "dma_code": 810, "latitude": 46.2112458, "longitude": -119.1372338, "region": "WA", "slug": "kennewick-wa"},
|
|
95
|
+
{"city": "Keokuk", "dma_code": 717, "latitude": 40.402524999999997, "longitude": -91.394372000000004, "region": "IA", "slug": "keokuk-ia"},
|
|
96
|
+
{"city": "Kirksville", "dma_code": 631, "latitude": 40.194753900000002, "longitude": -92.583249600000002, "region": "MO", "slug": "kirksville-mo"},
|
|
97
|
+
{"city": "Klamath Falls", "dma_code": 813, "latitude": 42.224867000000003, "longitude": -121.7816704, "region": "OR", "slug": "klamath-falls-or"},
|
|
98
|
+
{"city": "Knoxville", "dma_code": 557, "latitude": 35.960638400000001, "longitude": -83.9207392, "region": "TN", "slug": "knoxville-tn"},
|
|
99
|
+
{"city": "Lafayette", "dma_code": 582, "latitude": 40.416702200000003, "longitude": -86.875286900000006, "region": "IN", "slug": "lafayette-in"},
|
|
100
|
+
{"city": "Lafayette", "dma_code": 642, "latitude": 30.2240897, "longitude": -92.019842699999998, "region": "LA", "slug": "lafayette-la"},
|
|
101
|
+
{"city": "Lake Charles", "dma_code": 643, "latitude": 30.226594899999998, "longitude": -93.217375799999999, "region": "LA", "slug": "lake-charles-la"},
|
|
102
|
+
{"city": "Lansing", "dma_code": 551, "latitude": 42.732534999999999, "longitude": -84.555534699999995, "region": "MI", "slug": "lansing-mi"},
|
|
103
|
+
{"city": "Laredo", "dma_code": 749, "latitude": 27.506406999999999, "longitude": -99.507542099999995, "region": "TX", "slug": "laredo-tx"},
|
|
104
|
+
{"city": "Las Vegas", "dma_code": 839, "latitude": 36.114646, "longitude": -115.172816, "region": "NV", "slug": "las-vegas-nv"},
|
|
105
|
+
{"city": "Laurel", "dma_code": 710, "latitude": 31.694050900000001, "longitude": -89.130612400000004, "region": "MS", "slug": "laurel-ms"},
|
|
106
|
+
{"city": "Lawton", "dma_code": 627, "latitude": 34.608685399999999, "longitude": -98.390330500000005, "region": "OK", "slug": "lawton-ok"},
|
|
107
|
+
{"city": "Lexington", "dma_code": 541, "latitude": 38.031713600000003, "longitude": -84.495135899999994, "region": "KY", "slug": "lexington-ky"},
|
|
108
|
+
{"city": "Lima", "dma_code": 558, "latitude": 40.742550999999999, "longitude": -84.105225599999997, "region": "OH", "slug": "lima-oh"},
|
|
109
|
+
{"city": "Longview", "dma_code": 709, "latitude": 32.500703700000003, "longitude": -94.740489100000005, "region": "TX", "slug": "longview-tx"},
|
|
110
|
+
{"city": "Los Angeles", "dma_code": 803, "latitude": 34.052234200000001, "longitude": -118.24368490000001, "region": "CA", "slug": "los-angeles-ca"},
|
|
111
|
+
{"city": "Louisville", "dma_code": 529, "latitude": 38.254237600000003, "longitude": -85.759406999999996, "region": "KY", "slug": "louisville-ky"},
|
|
112
|
+
{"city": "Lubbock", "dma_code": 651, "latitude": 33.577863100000002, "longitude": -101.8551665, "region": "TX", "slug": "lubbock-tx"},
|
|
113
|
+
{"city": "Lufkin", "dma_code": 709, "latitude": 31.338240599999999, "longitude": -94.729096999999996, "region": "TX", "slug": "lufkin-tx"},
|
|
114
|
+
{"city": "Lynchburg", "dma_code": 573, "latitude": 37.4137536, "longitude": -79.142246400000005, "region": "VA", "slug": "lynchburg-va"},
|
|
115
|
+
{"city": "Macon", "dma_code": 503, "latitude": 32.840694599999999, "longitude": -83.632402200000001, "region": "GA", "slug": "macon-ga"},
|
|
116
|
+
{"city": "Madison", "dma_code": 669, "latitude": 43.073051700000001, "longitude": -89.401230200000001, "region": "WI", "slug": "madison-wi"},
|
|
117
|
+
{"city": "Manchester", "dma_code": 506, "latitude": 42.995639699999998, "longitude": -71.454789099999999, "region": "NH", "slug": "manchester-nh"},
|
|
118
|
+
{"city": "Mankato", "dma_code": 737, "latitude": 44.163577500000002, "longitude": -93.999399600000004, "region": "MN", "slug": "mankato-mn"},
|
|
119
|
+
{"city": "Marquette", "dma_code": 553, "latitude": 46.543544199999999, "longitude": -87.395416999999995, "region": "MI", "slug": "marquette-mi"},
|
|
120
|
+
{"city": "McAllen", "dma_code": 636, "latitude": 26.2034071, "longitude": -98.230012400000007, "region": "TX", "slug": "mcallen-tx"},
|
|
121
|
+
{"city": "Melbourne", "dma_code": 534, "latitude": 28.083626899999999, "longitude": -80.608108900000005, "region": "FL", "slug": "melbourne-fl"},
|
|
122
|
+
{"city": "Memphis", "dma_code": 640, "latitude": 35.149534299999999, "longitude": -90.048980099999994, "region": "TN", "slug": "memphis-tn"},
|
|
123
|
+
{"city": "Meridian", "dma_code": 711, "latitude": 32.364309800000001, "longitude": -88.703655999999995, "region": "MS", "slug": "meridian-ms"},
|
|
124
|
+
{"city": "Midland", "dma_code": 633, "latitude": 31.997345599999999, "longitude": -102.0779146, "region": "TX", "slug": "midland-tx"},
|
|
125
|
+
{"city": "Milwaukee", "dma_code": 617, "latitude": 43.038902499999999, "longitude": -87.906473599999998, "region": "WI", "slug": "milwaukee-wi"},
|
|
126
|
+
{"city": "Missoula", "dma_code": 762, "latitude": 46.872146000000001, "longitude": -113.99399819999999, "region": "MT", "slug": "missoula-mt"},
|
|
127
|
+
{"city": "Mitchell", "dma_code": 725, "latitude": 43.709428299999999, "longitude": -98.029799199999999, "region": "SD", "slug": "mitchell-sd"},
|
|
128
|
+
{"city": "Modesto", "dma_code": 862, "latitude": 37.639097200000002, "longitude": -120.9968782, "region": "CA", "slug": "modesto-ca"},
|
|
129
|
+
{"city": "Moline", "dma_code": 682, "latitude": 41.506700299999999, "longitude": -90.515134200000006, "region": "IL", "slug": "moline-il"},
|
|
130
|
+
{"city": "Montgomery", "dma_code": 698, "latitude": 32.366805200000002, "longitude": -86.299968899999996, "region": "AL", "slug": "montgomery-al"},
|
|
131
|
+
{"city": "Montrose", "dma_code": 773, "latitude": 38.478319800000001, "longitude": -107.8761738, "region": "CO", "slug": "montrose-co"},
|
|
132
|
+
{"city": "Mount Vernon", "dma_code": 632, "latitude": 38.317271400000003, "longitude": -88.903120099999995, "region": "IL", "slug": "mount-vernon-il"},
|
|
133
|
+
{"city": "Myrtle Beach", "dma_code": 570, "latitude": 33.689060300000001, "longitude": -78.886694300000002, "region": "SC", "slug": "myrtle-beach-sc"},
|
|
134
|
+
{"city": "Nacogdoches", "dma_code": 709, "latitude": 31.603512899999998, "longitude": -94.655487399999998, "region": "TX", "slug": "nacogdoches-tx"},
|
|
135
|
+
{"city": "Naples", "dma_code": 571, "latitude": 26.142035799999999, "longitude": -81.794810299999995, "region": "FL", "slug": "naples-fl"},
|
|
136
|
+
{"city": "Nashville", "dma_code": 659, "latitude": 36.165889900000003, "longitude": -86.784443199999998, "region": "TN", "slug": "nashville-tn"},
|
|
137
|
+
{"city": "New Bedford", "dma_code": 521, "latitude": 41.636215200000002, "longitude": -70.934205000000006, "region": "MA", "slug": "new-bedford-ma"},
|
|
138
|
+
{"city": "New Haven", "dma_code": 533, "latitude": 41.308152700000001, "longitude": -72.9281577, "region": "CT", "slug": "new-haven-ct"},
|
|
139
|
+
{"city": "New Orleans", "dma_code": 622, "latitude": 29.964722200000001, "longitude": -90.070555600000006, "region": "LA", "slug": "new-orleans-la"},
|
|
140
|
+
{"city": "New York", "dma_code": 501, "latitude": 40.714269100000003, "longitude": -74.005972900000003, "region": "NY", "slug": "new-york-ny"},
|
|
141
|
+
{"city": "Newport News", "dma_code": 544, "latitude": 36.978758800000001, "longitude": -76.428003000000004, "region": "VA", "slug": "newport-news-va"},
|
|
142
|
+
{"city": "North Platte", "dma_code": 740, "latitude": 41.1238873, "longitude": -100.7654232, "region": "NE", "slug": "north-platte-ne"},
|
|
143
|
+
{"city": "Oak Hill", "dma_code": 559, "latitude": 37.972333900000002, "longitude": -81.148713499999999, "region": "WV", "slug": "oak-hill-wv"},
|
|
144
|
+
{"city": "Oklahoma City", "dma_code": 650, "latitude": 35.467560200000001, "longitude": -97.5164276, "region": "OK", "slug": "oklahoma-city-ok"},
|
|
145
|
+
{"city": "Omaha", "dma_code": 652, "latitude": 41.254005999999997, "longitude": -95.999257999999998, "region": "NE", "slug": "omaha-ne"},
|
|
146
|
+
{"city": "Palm Springs", "dma_code": 804, "latitude": 33.830296099999998, "longitude": -116.5452921, "region": "CA", "slug": "palm-springs-ca"},
|
|
147
|
+
{"city": "Panama City", "dma_code": 656, "latitude": 30.158812900000001, "longitude": -85.6602058, "region": "FL", "slug": "panama-city-fl"},
|
|
148
|
+
{"city": "Parkersburg", "dma_code": 597, "latitude": 39.266741799999998, "longitude": -81.561513500000004, "region": "WV", "slug": "parkersburg-wv"},
|
|
149
|
+
{"city": "Pensacola", "dma_code": 686, "latitude": 30.421309000000001, "longitude": -87.216914900000006, "region": "FL", "slug": "pensacola-fl"},
|
|
150
|
+
{"city": "Petersburg", "dma_code": 556, "latitude": 37.227927899999997, "longitude": -77.401926700000004, "region": "VA", "slug": "petersburg-va"},
|
|
151
|
+
{"city": "Philadelphia", "dma_code": 504, "latitude": 39.952334999999998, "longitude": -75.163788999999994, "region": "PA", "slug": "philadelphia-pa"},
|
|
152
|
+
{"city": "Phoenix", "dma_code": 753, "latitude": 33.448377100000002, "longitude": -112.0740373, "region": "AZ", "slug": "phoenix-az"},
|
|
153
|
+
{"city": "Pine Bluff", "dma_code": 693, "latitude": 34.228431200000003, "longitude": -92.003195500000004, "region": "AR", "slug": "pine-bluff-ar"},
|
|
154
|
+
{"city": "Pittsburg", "dma_code": 603, "latitude": 37.410884000000003, "longitude": -94.70496, "region": "KS", "slug": "pittsburg-ks"},
|
|
155
|
+
{"city": "Pittsburgh", "dma_code": 508, "latitude": 40.440624800000002, "longitude": -79.995886400000003, "region": "PA", "slug": "pittsburgh-pa"},
|
|
156
|
+
{"city": "Plattsburgh", "dma_code": 523, "latitude": 44.699487300000001, "longitude": -73.452912400000002, "region": "NY", "slug": "plattsburgh-ny"},
|
|
157
|
+
{"city": "Pocatello", "dma_code": 758, "latitude": 42.8713032, "longitude": -112.4455344, "region": "ID", "slug": "pocatello-id"},
|
|
158
|
+
{"city": "Port Arthur", "dma_code": 692, "latitude": 29.884950400000001, "longitude": -93.939947000000004, "region": "TX", "slug": "port-arthur-tx"},
|
|
159
|
+
{"city": "Portland", "dma_code": 820, "latitude": 45.5234515, "longitude": -122.6762071, "region": "OR", "slug": "portland-or"},
|
|
160
|
+
{"city": "Presque Isle", "dma_code": 552, "latitude": 46.681153000000002, "longitude": -68.0158615, "region": "ME", "slug": "presque-isle-me"},
|
|
161
|
+
{"city": "Pueblo", "dma_code": 752, "latitude": 38.254447200000001, "longitude": -104.6091409, "region": "CO", "slug": "pueblo-co"},
|
|
162
|
+
{"city": "Rapid City", "dma_code": 764, "latitude": 44.080543400000003, "longitude": -103.23101490000001, "region": "SD", "slug": "rapid-city-sd"},
|
|
163
|
+
{"city": "Redding", "dma_code": 868, "latitude": 40.586539600000002, "longitude": -122.3916754, "region": "CA", "slug": "redding-ca"},
|
|
164
|
+
{"city": "Reno", "dma_code": 811, "latitude": 39.529632900000003, "longitude": -119.8138027, "region": "NV", "slug": "reno-nv"},
|
|
165
|
+
{"city": "Rhinelander", "dma_code": 705, "latitude": 45.636622799999998, "longitude": -89.412075299999998, "region": "WI", "slug": "rhinelander-wi"},
|
|
166
|
+
{"city": "Riverton", "dma_code": 767, "latitude": 43.024959199999998, "longitude": -108.3801036, "region": "WY", "slug": "riverton-wy"},
|
|
167
|
+
{"city": "Rochester", "dma_code": 538, "latitude": 43.154784499999998, "longitude": -77.615556699999999, "region": "NY", "slug": "rochester-ny"},
|
|
168
|
+
{"city": "Rockford", "dma_code": 610, "latitude": 42.271131099999998, "longitude": -89.093995199999995, "region": "IL", "slug": "rockford-il"},
|
|
169
|
+
{"city": "Rogers", "dma_code": 670, "latitude": 36.332019600000002, "longitude": -94.118536599999999, "region": "AR", "slug": "rogers-ar"},
|
|
170
|
+
{"city": "Salinas", "dma_code": 828, "latitude": 36.677737200000003, "longitude": -121.6555013, "region": "CA", "slug": "salinas-ca"},
|
|
171
|
+
{"city": "Salisbury", "dma_code": 576, "latitude": 38.360673599999998, "longitude": -75.599369199999998, "region": "MD", "slug": "salisbury-md"},
|
|
172
|
+
{"city": "Salt Lake City", "dma_code": 770, "latitude": 40.760779300000003, "longitude": -111.89104740000001, "region": "UT", "slug": "salt-lake-city-ut"},
|
|
173
|
+
{"city": "San Angelo", "dma_code": 661, "latitude": 31.463772299999999, "longitude": -100.4370375, "region": "TX", "slug": "san-angelo-tx"},
|
|
174
|
+
{"city": "San Antonio", "dma_code": 641, "latitude": 29.424121899999999, "longitude": -98.493628200000003, "region": "TX", "slug": "san-antonio-tx"},
|
|
175
|
+
{"city": "San Diego", "dma_code": 825, "latitude": 32.715329199999999, "longitude": -117.1572551, "region": "CA", "slug": "san-diego-ca"},
|
|
176
|
+
{"city": "San Jose", "dma_code": 807, "latitude": 37.339385700000001, "longitude": -121.89495549999999, "region": "CA", "slug": "san-jose-ca"},
|
|
177
|
+
{"city": "San Luis Obispo", "dma_code": 855, "latitude": 35.2827524, "longitude": -120.6596156, "region": "CA", "slug": "san-luis-obispo-ca"},
|
|
178
|
+
{"city": "Santa Fe", "dma_code": 790, "latitude": 35.686975199999999, "longitude": -105.937799, "region": "NM", "slug": "santa-fe-nm"},
|
|
179
|
+
{"city": "Sarasota", "dma_code": 539, "latitude": 27.336434700000002, "longitude": -82.530652700000005, "region": "FL", "slug": "sarasota-fl"},
|
|
180
|
+
{"city": "Savannah", "dma_code": 507, "latitude": 32.0835407, "longitude": -81.099834200000004, "region": "GA", "slug": "savannah-ga"},
|
|
181
|
+
{"city": "Scottsbluff", "dma_code": 759, "latitude": 41.867139999999999, "longitude": -103.660709, "region": "NE", "slug": "scottsbluff-ne"},
|
|
182
|
+
{"city": "Scranton", "dma_code": 577, "latitude": 41.408968999999999, "longitude": -75.662412200000006, "region": "PA", "slug": "scranton-pa"},
|
|
183
|
+
{"city": "Selma", "dma_code": 698, "latitude": 32.407358899999998, "longitude": -87.021100700000005, "region": "AL", "slug": "selma-al"},
|
|
184
|
+
{"city": "Shreveport", "dma_code": 612, "latitude": 32.525151600000001, "longitude": -93.750178899999995, "region": "LA", "slug": "shreveport-la"},
|
|
185
|
+
{"city": "Sierra Vista", "dma_code": 789, "latitude": 31.545500100000002, "longitude": -110.2772856, "region": "AZ", "slug": "sierra-vista-az"},
|
|
186
|
+
{"city": "Sioux City", "dma_code": 624, "latitude": 42.499994200000003, "longitude": -96.400306900000004, "region": "IA", "slug": "sioux-city-ia"},
|
|
187
|
+
{"city": "Sioux Falls", "dma_code": 725, "latitude": 43.549974900000002, "longitude": -96.700327000000001, "region": "SD", "slug": "sioux-falls-sd"},
|
|
188
|
+
{"city": "Spokane", "dma_code": 881, "latitude": 47.658780200000002, "longitude": -117.42604660000001, "region": "WA", "slug": "spokane-wa"},
|
|
189
|
+
{"city": "Springfield", "dma_code": 619, "latitude": 37.215325999999997, "longitude": -93.298243600000006, "region": "MO", "slug": "springfield-mo"},
|
|
190
|
+
{"city": "Springfield", "dma_code": 648, "latitude": 39.8403147, "longitude": -88.9548001, "region": "IL", "slug": "springfield-il"},
|
|
191
|
+
{"city": "St. Joseph", "dma_code": 638, "latitude": 39.7577778, "longitude": -94.836388900000003, "region": "MO", "slug": "st-joseph-mo"},
|
|
192
|
+
{"city": "St. Louis", "dma_code": 609, "latitude": 38.646991, "longitude": -90.224967000000007, "region": "MO", "slug": "st-louis-mo"},
|
|
193
|
+
{"city": "St. Paul", "dma_code": 613, "latitude": 44.944167, "longitude": -93.086074999999994, "region": "MN", "slug": "st-paul-mn"},
|
|
194
|
+
{"city": "St. Petersburg", "dma_code": 539, "latitude": 27.782253999999998, "longitude": -82.667619000000002, "region": "FL", "slug": "st-petersburg-fl"},
|
|
195
|
+
{"city": "Steubenville", "dma_code": 554, "latitude": 40.369790500000001, "longitude": -80.633963800000004, "region": "OH", "slug": "steubenville-oh"},
|
|
196
|
+
{"city": "Superior", "dma_code": 676, "latitude": 46.720773700000002, "longitude": -92.104079600000006, "region": "WI", "slug": "superior-wi"},
|
|
197
|
+
{"city": "Sweetwater", "dma_code": 662, "latitude": 32.470951900000003, "longitude": -100.4059384, "region": "TX", "slug": "sweetwater-tx"},
|
|
198
|
+
{"city": "Syracuse", "dma_code": 555, "latitude": 43.048122100000001, "longitude": -76.147424400000006, "region": "NY", "slug": "syracuse-ny"},
|
|
199
|
+
{"city": "Tacoma", "dma_code": 819, "latitude": 47.252876800000003, "longitude": -122.4442906, "region": "WA", "slug": "tacoma-wa"},
|
|
200
|
+
{"city": "Terre Haute", "dma_code": 581, "latitude": 39.4667034, "longitude": -87.413909200000006, "region": "IN", "slug": "terre-haute-in"},
|
|
201
|
+
{"city": "Thomasville", "dma_code": 530, "latitude": 30.836581500000001, "longitude": -83.978780799999996, "region": "GA", "slug": "thomasville-ga"},
|
|
202
|
+
{"city": "Toledo", "dma_code": 547, "latitude": 41.663938299999998, "longitude": -83.555211999999997, "region": "OH", "slug": "toledo-oh"},
|
|
203
|
+
{"city": "Topeka", "dma_code": 605, "latitude": 39.048333599999999, "longitude": -95.678037099999997, "region": "KS", "slug": "topeka-ks"},
|
|
204
|
+
{"city": "Troy", "dma_code": 532, "latitude": 42.728411700000002, "longitude": -73.691785100000004, "region": "NY", "slug": "troy-ny"},
|
|
205
|
+
{"city": "Tucson", "dma_code": 789, "latitude": 32.221742900000002, "longitude": -110.926479, "region": "AZ", "slug": "tucson-az"},
|
|
206
|
+
{"city": "Tulsa", "dma_code": 671, "latitude": 36.153981600000002, "longitude": -95.992774999999995, "region": "OK", "slug": "tulsa-ok"},
|
|
207
|
+
{"city": "Twin Falls", "dma_code": 760, "latitude": 42.562966799999998, "longitude": -114.46087110000001, "region": "ID", "slug": "twin-falls-id"},
|
|
208
|
+
{"city": "Utica", "dma_code": 526, "latitude": 43.100903000000002, "longitude": -75.232664, "region": "NY", "slug": "utica-ny"},
|
|
209
|
+
{"city": "Valley City", "dma_code": 724, "latitude": 46.923312899999999, "longitude": -98.003154699999996, "region": "ND", "slug": "valley-city-nd"},
|
|
210
|
+
{"city": "Victoria", "dma_code": 626, "latitude": 28.805267400000002, "longitude": -97.003598199999999, "region": "TX", "slug": "victoria-tx"},
|
|
211
|
+
{"city": "Visalia", "dma_code": 866, "latitude": 36.330228400000003, "longitude": -119.2920585, "region": "CA", "slug": "visalia-ca"},
|
|
212
|
+
{"city": "Washington DC ", "dma_code": 511, "latitude": 38.895111800000002, "longitude": -77.036365799999999, "region": "MD", "slug": "washington-dc-md"},
|
|
213
|
+
{"city": "Washington", "dma_code": 545, "latitude": 35.546551700000002, "longitude": -77.052174199999996, "region": "NC", "slug": "washington-nc"},
|
|
214
|
+
{"city": "Watertown", "dma_code": 549, "latitude": 43.974783799999997, "longitude": -75.910756500000005, "region": "NY", "slug": "watertown-ny"},
|
|
215
|
+
{"city": "West Point", "dma_code": 673, "latitude": 33.607618600000002, "longitude": -88.6503254, "region": "MS", "slug": "west-point-ms"},
|
|
216
|
+
{"city": "Weston", "dma_code": 598, "latitude": 39.038427400000003, "longitude": -80.467313000000004, "region": "WV", "slug": "weston-wv"},
|
|
217
|
+
{"city": "Wichita Falls", "dma_code": 627, "latitude": 33.695379099999997, "longitude": -98.308844100000002, "region": "OK", "slug": "wichita-falls-ok"},
|
|
218
|
+
{"city": "Williston", "dma_code": 687, "latitude": 48.146968299999997, "longitude": -103.6179745, "region": "ND", "slug": "williston-nd"},
|
|
219
|
+
{"city": "Wilmington", "dma_code": 550, "latitude": 34.225725500000003, "longitude": -77.944710200000003, "region": "NC", "slug": "wilmington-nc"},
|
|
220
|
+
{"city": "Winston Salem", "dma_code": 518, "latitude": 36.099859600000002, "longitude": -80.244215999999994, "region": "NC", "slug": "winston-salem-nc"},
|
|
221
|
+
{"city": "York", "dma_code": 566, "latitude": 39.962598399999997, "longitude": -76.727744999999999, "region": "PA", "slug": "york-pa"},
|
|
222
|
+
{"city": "Youngstown", "dma_code": 536, "latitude": 41.099780299999999, "longitude": -80.649519400000003, "region": "OH", "slug": "youngstown-oh"},
|
|
223
|
+
{"city": "Zanesville", "dma_code": 596, "latitude": 39.940345299999997, "longitude": -82.013192399999994, "region": "OH", "slug": "zanesville-oh"}
|
|
224
|
+
]
|
|
Binary file
|
|
Binary file
|