Anshul Singhvi
Anshul Singhvi
Initial prototype up and running (pages but no external links or collapsing spec yet) - it just worked!! https://github.com/asinghvi17/DocumenterPages.jl
https://github.com/JuliaDocs/Documenter.jl/blob/6abd8288164285ac58e4234f36c64b13029792e1/src/html/HTMLWriter.jl#L1237 is where the collapsing logic goes
The reader in GeoPackage.jl semi works, it just needs to be cleaned up a lot + optimized :D. I'm not sure about the writer though, that seems like a lot...
I _think_ so? Strings are heap allocated, so presumably yes, and `Base.summarysize` doesn't tell you whether there's a pointer there or not.
Yes, I just checked and the pointer to the strings is the same for multiple geometries initialized with the same CRS object.
Maybe it's a bad idea, but we could just wrap every Shapefile geometry as a GI geometry when they're returned from `Handle`....then the GI wrapper can hold crs.
I guess we would add a `crs` argument to all `read` functions in Shapefile.jl?
This test was failing before the writer change and I don't entirely understand why: ``` write tables: Test Failed at /home/runner/work/Shapefile.jl/Shapefile.jl/test/table.jl:55 Expression: all(isequal.(replace.(skipmissing(a), !isascii => (x->begin #= /home/runner/work/Shapefile.jl/Shapefile.jl/test/table.jl:56 =# '_'...
bump @KristofferC