This updates ESLint and our shared eslint-config-openlayers to use Prettier. Most formatting changes were automatically applied with this:
npm run lint -- --fix
A few manual changes were required:
* In `examples/offscreen-canvas.js`, the `//eslint-disable-line` comment needed to be moved to the appropriate line to disable the error about the `'worker-loader!./offscreen-canvas.worker.js'` import.
* In `examples/webpack/exapmle-builder.js`, spaces could not be added after a couple `function`s for some reason. While editing this, I reworked `ExampleBuilder` to be a class.
* In `src/ol/format/WMSGetFeatureInfo.js`, the `// @ts-ignore` comment needed to be moved down one line so it applied to the `parsersNS` argument.
68 lines
1.8 KiB
JavaScript
68 lines
1.8 KiB
JavaScript
import Triangulation from '../../../../src/ol/reproj/Triangulation.js';
|
|
import {
|
|
addCommon,
|
|
clearAllProjections,
|
|
get as getProjection,
|
|
} from '../../../../src/ol/proj.js';
|
|
import {register} from '../../../../src/ol/proj/proj4.js';
|
|
|
|
describe('ol.reproj.Triangulation', function () {
|
|
beforeEach(function () {
|
|
proj4.defs(
|
|
'EPSG:27700',
|
|
'+proj=tmerc +lat_0=49 +lon_0=-2 ' +
|
|
'+k=0.9996012717 +x_0=400000 +y_0=-100000 +ellps=airy ' +
|
|
'+towgs84=446.448,-125.157,542.06,0.15,0.247,0.842,-20.489 ' +
|
|
'+units=m +no_defs'
|
|
);
|
|
register(proj4);
|
|
const proj27700 = getProjection('EPSG:27700');
|
|
proj27700.setExtent([0, 0, 700000, 1300000]);
|
|
});
|
|
|
|
afterEach(function () {
|
|
delete proj4.defs['EPSG:27700'];
|
|
clearAllProjections();
|
|
addCommon();
|
|
});
|
|
|
|
describe('constructor', function () {
|
|
it('is trivial for identity', function () {
|
|
const proj4326 = getProjection('EPSG:4326');
|
|
const triangulation = new Triangulation(
|
|
proj4326,
|
|
proj4326,
|
|
[20, 20, 30, 30],
|
|
[-180, -90, 180, 90],
|
|
0
|
|
);
|
|
expect(triangulation.getTriangles().length).to.be(2);
|
|
});
|
|
|
|
it('is empty when outside source extent', function () {
|
|
const proj4326 = getProjection('EPSG:4326');
|
|
const proj27700 = getProjection('EPSG:27700');
|
|
const triangulation = new Triangulation(
|
|
proj27700,
|
|
proj4326,
|
|
[0, 0, 10, 10],
|
|
proj27700.getExtent(),
|
|
0
|
|
);
|
|
expect(triangulation.getTriangles().length).to.be(0);
|
|
});
|
|
|
|
it('can handle null source extent', function () {
|
|
const proj4326 = getProjection('EPSG:4326');
|
|
const triangulation = new Triangulation(
|
|
proj4326,
|
|
proj4326,
|
|
[20, 20, 30, 30],
|
|
null,
|
|
0
|
|
);
|
|
expect(triangulation.getTriangles().length).to.be(2);
|
|
});
|
|
});
|
|
});
|