Jake Low
Jake Low
`skip` happens programmatically; it's a function that runs in the test, not an annotation. Consider this: ``` setup() { sleep 30 } teardown() { sleep 30 } @test "maybe skip"...
Ah, I misunderstood. I definitely think your use case is valid; other test frameworks that I've worked with implement skip as a test annotation. Pytest is a good example of...
Does this seem like a reasonable approach to reducing said duplication? If so I can clean it up and turn it into a PR. https://observablehq.com/@jake-low/u-s-map-with-puerto-rico
Interesting. Thanks for the link; it's very helpful. > My initial attempts involved inverting the viewport polygon to figure out which tiles overlap with it. It worked, but slowed down...
I've had a chance to think about this some more and play around. I implemented tile visibility detection in a [notebook](https://beta.observablehq.com/@jake-low/web-mercator-tile-visibility). It works and is reasonably performant, but I've had...
Thanks! Those are both great ideas, and I like the cleanup you've done in the notebook you linked. Along the same lines, I was considering trying to do something where...
Very cool stuff Fil. Quick question: > The reason is that D3 interpolates lines along the geodesic (shortest path on the sphere, a.k.a great circles), whereas GeoJSON interpolates them linearly...
That functionality isn't built into this plugin, but it is possible. Here's an example. ```js // This rehype plugin traverses elements in the document, and if that section's first //...
You're welcome! 🙂
> I think the mapper's preference should take precedence here, and we should serve nearby tasks to the mapper regardless of priority. I agree. Some mappers (myself included) prefer to...