Richard Law
Richard Law
Hmm, that's a bit odd. Yes, Pyld adds `text/html` (in the line you pointed out, i.e. `headers['Accept'] = headers['Accept'] + ', text/html;q=0.8, application/xhtml+xml;q=0.8'`) but that's a [default header value](https://developer.mozilla.org/en-US/docs/Web/HTTP/Content_negotiation/List_of_default_Accept_values) and...
Ah I see. Sorry it's been a while since I've looked at this. I think your version of the PR makes sense, and as long as both our tests pass,...
After reviewing the source, it doesn't seem to be the case that pyld doesn't inspect `Link` headers, but that it does [`response.json()`](https://github.com/digitalbazaar/pyld/blob/f5d2814ead6b9b7da4bac6ad47ed34e8e3d6e218/lib/pyld/documentloader/requests.py#L72), triggering an exception right before the `Link` header...
@davidlehn I'm trying to learn how the tests are put together, to get a clear failing case before trying to fix the issue. If you can help with that, I'm...
I was just working on an H3 demo for a GIS forum, and wanted to demonstrate this. Came up with: ```python from shapely.geometry.linestring import LineString from typing import Iterator def...
Version 2, adding multilinestring as valid input type. ```python from shapely.geometry.linestring import LineString from shapely.geometry.multilinestring import MultiLineString from typing import Iterator, Union def sequential_deduplication(func: Iterator[str]) -> Iterator[str]: ''' Decorator that...
Not sure what the search engines are doing (so whether or not this is required for structured data parsing), but the idea of using AJAX to request it separately is...
I had a quick look at this and it seemed the bug was more that the configuration was something like: ```yaml temporal: begins: 2010-01-01 ends: null ``` And then internally...
You're right, of course there's no way not to compute all of the child cells, the best case optimisation is just not to put all of them (complete de-compaction) into...
Just here to say that setting `cartopy.config['data_dir']` *does* work fine for me. I'm doing this with a Docker build, only downloading the 10m coastlines. Here's a snippet of my Dockerfile:...