-
Notifications
You must be signed in to change notification settings - Fork 18
Comparing changes
Open a pull request
base repository: JuliaGeo/GeoInterface.jl
base: v1.3.5
head repository: JuliaGeo/GeoInterface.jl
compare: main
Commits on Jul 3, 2024
-
Handle vectors with missings correctly in GeoInterfaceMakie (#139)
* Add tests to see if missing geoms are handled correctly Hint: they are not... * Handle missing values in geom arrays by injecting NaN geometries * Fix missing tests for now by making all types Float64 * Bump patch version
2Configuration menu - View commit details
-
Copy full SHA for d423c65 - Browse repository at this point
Copy the full SHA d423c65View commit details
Commits on Jul 13, 2024
-
* Add affine to API to enable Raster API. * Expanded description of affine. * Update to have index and coords. * Remove affine, index and coords. * Depend on GeoFormatTypes to make things officially integrated.
Configuration menu - View commit details
-
Copy full SHA for aead6f2 - Browse repository at this point
Copy the full SHA aead6f2View commit details -
* Implement . * Revert crstrait prefix on operations except for extent. * Resolve docstring comment. * Don't implement crstrait for Extent just yet.
Configuration menu - View commit details
-
Copy full SHA for f306295 - Browse repository at this point
Copy the full SHA f306295View commit details
Commits on Jul 16, 2024
-
add Wrappers as a module to the makedocs call (#145)
* add Wrappers as a module to the makedocs call fix #144 * Push preview docs
Configuration menu - View commit details
-
Copy full SHA for 2778a07 - Browse repository at this point
Copy the full SHA 2778a07View commit details
Commits on Jul 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 569275a - Browse repository at this point
Copy the full SHA 569275aView commit details
Commits on Sep 2, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 18ee04f - Browse repository at this point
Copy the full SHA 18ee04fView commit details -
2
Configuration menu - View commit details
-
Copy full SHA for b0156d3 - Browse repository at this point
Copy the full SHA b0156d3View commit details
Commits on Sep 23, 2024
-
add trait promotion without array (#159)
* add trait promotion without array * support FeatureCollection + tests * Apply suggestion from code review * Get tests working, propagate crs and extent up * Update src/wrappers.jl --------- Co-authored-by: Anshul Singhvi <anshulsinghvi@gmail.com> Co-authored-by: Rafael Schouten <rafaelschouten@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5c885b2 - Browse repository at this point
Copy the full SHA 5c885b2View commit details -
2
Configuration menu - View commit details
-
Copy full SHA for f43bb88 - Browse repository at this point
Copy the full SHA f43bb88View commit details
Commits on Sep 25, 2024
-
Allow Feature without properties (#165)
* bugfix feature with no properties
Configuration menu - View commit details
-
Copy full SHA for 34dafb7 - Browse repository at this point
Copy the full SHA 34dafb7View commit details
Commits on Oct 12, 2024
-
Correctly implement interface for wrapper geometry. (#169)
* Correctly implement interface for wrapper geometry. * Test for correct implementations. * Direct call of two/three argument methods.
2Configuration menu - View commit details
-
Copy full SHA for e6cacdc - Browse repository at this point
Copy the full SHA e6cacdcView commit details
Commits on Nov 5, 2024
-
* Bump version to 1.3.8. * Pin documentation to Julia 1.10.
2Configuration menu - View commit details
-
Copy full SHA for a652094 - Browse repository at this point
Copy the full SHA a652094View commit details
Commits on Nov 18, 2024
-
Bump codecov/codecov-action from 4 to 5 (#174)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 10e84d8 - Browse repository at this point
Copy the full SHA 10e84d8View commit details
Commits on Dec 10, 2024
-
CompatHelper: bump compat for GeometryBasics to 0.5 for package GeoIn…
…terfaceMakie, (keep existing compat) (#175) Co-authored-by: CompatHelper Julia <compathelper_noreply@julialang.org>
Configuration menu - View commit details
-
Copy full SHA for 0b359a1 - Browse repository at this point
Copy the full SHA 0b359a1View commit details
Commits on Dec 13, 2024
-
Fix printing wrapper geoms (#150)
* Define show methods for wrapper geoms * Display method for features * Vetter show for feature collection * Fix compactness handling in collections * Only show extent/crs when not compact * Add tests for display methods * Attempt at compressing string length * Make logic to skip entries smarter for nested geoms * minor layout tweaks --------- Co-authored-by: Rafael Schouten <rafaelschouten@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 1db072e - Browse repository at this point
Copy the full SHA 1db072eView commit details -
Implement crs and geometrycolumn fallbacks via DataAPI (#161)
* Implement crs and geometrycolumn fallbacks via DataAPI * fix function name * use type not object to query DataAPI * Move core functionality to a new `metadata.jl` * add aftercare for geometry columns * add docs about geometrycolumns and crs for feature collections * minor bugfixes + add tests * avoid extra entry * add constants that define what the keys are, for portability
Configuration menu - View commit details
-
Copy full SHA for 334c0ec - Browse repository at this point
Copy the full SHA 334c0ecView commit details -
2
Configuration menu - View commit details
-
Copy full SHA for 0649d70 - Browse repository at this point
Copy the full SHA 0649d70View commit details
Commits on Dec 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d0e9ab3 - Browse repository at this point
Copy the full SHA d0e9ab3View commit details
Commits on Jan 20, 2025
-
* bugfix missing or wrongly named variables * bugfix show * try fixing point show by adding kwarg * Use sprint() instead of global IO buffers in test_display * Test the printing of wrapped geometries * we be rappin now this is probably the best example of a 9pm commit I've had so far... in all seriousness we could change the name * Forward 2-arg show to 3-arg text/plain show This allows the new show methods to also work in e.g arrays. * `MIME("text/plain")` -> `MIME"text/plain"()` fix typos * wrap crs in quotes when showing then, you can actually copy/paste the code * Force display size to be consistent in test function * Fix tests for new syntax --------- Co-authored-by: Rafael Schouten <rafaelschouten@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 37b07f6 - Browse repository at this point
Copy the full SHA 37b07f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a388ea - Browse repository at this point
Copy the full SHA 7a388eaView commit details
Commits on Jan 21, 2025
-
CompatHelper: bump compat for MakieCore to 0.9 for package GeoInterfa…
…ceMakie, (keep existing compat) (#180) Co-authored-by: CompatHelper Julia <compathelper_noreply@julialang.org> Co-authored-by: Anshul Singhvi <anshulsinghvi@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 5d6b358 - Browse repository at this point
Copy the full SHA 5d6b358View commit details -
4
Configuration menu - View commit details
-
Copy full SHA for f06ec24 - Browse repository at this point
Copy the full SHA f06ec24View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.3.5...main