-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Generalize TileSingleImage #761
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. There is only a minor comment left.
I should have a look why Psalm is complaining about the missing class.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. This belongs to a new feature of biigle/geo, right? I'll wait until it is ready then and the PRs can be merged together.
@mtiessen1175 Can you please resolve the conflicts of this branch? |
@mzur, since having merged the master-branch into this one locally, I get a few strange errors (such as the one described here) when trying to execute tests or even do update: I upgraded the dependencies on my local instance using update: I believe that the problem comes from using outdated docker images. I checked the php version on the app-image with update: Solved by updating to the latest docker images. |
@mzur, the php-linter still complains about accessing undefined properties, such as Biigle\FileCache\Contracts\File::$uuid. There are several ways to solve this type of error, as explained here (e.g. declaring the properties in the class docs with How would you approach this error? In the case at hand with the |
I'll have a look at the linter errors. If they are genuine, I'll suggest a fix and if not, I'll try to update the linter settings. The linter has become a little more strict since the Laravel 11 upgrade. |
The linter errors are genuine. We have three errors:
To fix these errors I suggest that you implement a more abstract version of |
…nd geo-overlay processing
resolved the linter errors aa91823 |
Made TileSingleImage-class more general to be used with other formats such as GeoOverlays.
This PR is associated with PR #47 from biigle/geo.