Open
Changes from 1 commit
Show all changes
55 commits
Select commit Hold shift + click to select a range
e8d763d
Add new dev dependencies
camdecosterMar 20, 2025
7f7b690
Add build scripts
camdecosterMar 20, 2025
6b596c0
Update some topojson references
camdecosterMar 20, 2025
353bf94
Add npm build scripts
camdecosterMar 20, 2025
fc6022f
Add 'usa' config
camdecosterMar 20, 2025
2910eea
Add clipping bounds for Antarctica
camdecosterMar 20, 2025
5d66dad
Apply suggestions from code review
camdecosterMar 20, 2025
3b47c67
Add geodata archive, update get_geodata script paths
camdecosterMar 21, 2025
b434656
Switch config file to JS
camdecosterMar 21, 2025
a4d0b21
Switch coastlines layer source
camdecosterMar 21, 2025
e257b7b
Add Oceania clipping bounds
camdecosterMar 21, 2025
1154ff1
Switch layer name to 'ocean'
camdecosterMar 21, 2025
86d5b00
Update test config
camdecosterMar 26, 2025
86f048c
Switch to UN/NE geodata hybrid
camdecosterMar 30, 2025
ac61095
Merge remote-tracking branch 'origin/master' into cam/7334/switch-geo…
camdecosterApr 6, 2025
f4c3d48
Fix zip/unzip of UN geojson
camdecosterApr 7, 2025
22a8e0a
Fix saving 110m maps
camdecosterApr 7, 2025
247f925
Update dist with new maps
camdecosterApr 8, 2025
3cf9730
Update geo tests
camdecosterApr 8, 2025
24e8558
Update cibuild npm script
camdecosterApr 8, 2025
b2ae532
Add draftlog
camdecosterApr 8, 2025
85ad69c
Remove sane-topojson package
camdecosterApr 15, 2025
b903b9f
Add small fixes
camdecosterApr 15, 2025
e74c65c
Remove log statements
camdecosterApr 15, 2025
33a2e00
add some mocks to blacklist
emilyklApr 22, 2025
4868250
update baselines for new geodata
emilyklApr 22, 2025
bce8d21
update blacklist in compare_pixels_test
emilyklApr 22, 2025
da44084
Save UN geodata in build folder
camdecosterApr 22, 2025
69f104e
make sure slash is added when concatenating topojson path
emilyklApr 23, 2025
c684b72
use local topojson for image tests
emilyklApr 23, 2025
362233a
update paths in jasmine geo_test
emilyklApr 23, 2025
4d37b8c
filter out extra features
emilyklApr 23, 2025
bb8377b
update image baselines for new geodata
emilyklApr 23, 2025
6356355
Merge pull request #7406 from plotly/cam/7334/switch-geodata-provider…
emilyklApr 23, 2025
5482adf
Filter out extra Hawaii feature during processing
camdecosterApr 24, 2025
2710e7c
Revert "filter out extra features"
camdecosterApr 24, 2025
b8bfea6
Adjust world rectangle to account for coordinate issues
camdecosterMay 6, 2025
d6ea8ab
Fix Anarctica geometry and simplification
camdecosterMay 6, 2025
3ec56ab
Fix land layer, clean up comments
camdecosterMay 6, 2025
79017d5
Remove unused filter
camdecosterMay 6, 2025
0f9049c
Remove turf simplify
camdecosterMay 6, 2025
4a6fb9d
Update topojson
camdecosterMay 6, 2025
33d3425
Filter Greenland out of Europe
camdecosterMay 6, 2025
c74f711
Erase Caspian Sea
camdecosterMay 6, 2025
f7cdc5f
Update topojson
camdecosterMay 7, 2025
9711ef7
Update country codes for disputed territories at Egypt/Sudan border
camdecosterMay 21, 2025
51a596e
Update topojson
camdecosterMay 21, 2025
40968da
Merge remote-tracking branch 'origin/master' into cam/7334/switch-geo…
camdecosterJun 4, 2025
5e7efc8
Attempt to stitch antimeridian crossing polygons
camdecosterJun 24, 2025
9026b55
Remove rectangle geojson
camdecosterJun 24, 2025
597ae5c
Remove unneeded library; restore old library version
camdecosterJun 25, 2025
15dd77a
Correct polygon winding directions
camdecosterJun 25, 2025
e385014
Update topojson
camdecosterJun 25, 2025
d3940c6
Merge remote-tracking branch 'origin/master' into cam/7334/switch-geo…
camdecosterJun 25, 2025
d7d7d0b
Fix merge issues with package-lock
camdecosterJun 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Failed to load files.
Previous commit
Next commit
update paths in jasmine geo_test
  • Loading branch information
@emilykl
emilykl committedApr 23, 2025
commit 362233a03d8f06f59578cc0dadaf784025987c24
Original file line numberDiff line numberDiff line change
Expand Up@@ -2759,10 +2759,10 @@ describe('Test geo interactions update marker angles:', function() {
})
.then(function() {
newPath = getPath();
expect(newPath).toEqual('M0,0L18.22327727600463,8.240883770679762L19.586810955756498,-4.044358612123453Z');
expect(newPath).toEqual('M0,0L18.223277273610172,8.24088377597469L19.58681095693162,-4.04435860643234Z');

expect(newPath).not.toEqual(initialPath);
expect(newPath).toEqual('M0,0L18.22327727600463,8.240883770679762L19.586810955756498,-4.044358612123453Z');
expect(newPath).toEqual('M0,0L18.223277273610172,8.24088377597469L19.58681095693162,-4.04435860643234Z');
expect(initialPath).toEqual('M0,0L-1.5100144203478312,19.942914943667123L10.500523963798084,17.021721313830223Z');
})
.then(done, done.fail);
Expand Down