Skip to content
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

Add raster processing capabilities to baremaps #871

Closed
wants to merge 6 commits into from
Closed

Conversation

bchapuis
Copy link
Member

@bchapuis bchapuis commented Jun 12, 2024

This pull request introduces:

  • A hillshade algorithm (raster to raster)
  • A contour algorithm (raster to vector)
  • A port of the martini algorithm (raster to 3d mesh)

// decode terrain values
for (int y = 0; y < tileSize; y++) {
for (int x = 0; x < tileSize; x++) {
int k = (y * tileSize + x) * 4;

Check notice

Code scanning / CodeQL

Unread local variable Note test

Variable 'int k' is never read.
Copy link

sonarcloud bot commented Jul 1, 2024

@bchapuis bchapuis changed the title Port the MARTINI algorithm to Java Add raster processing capabilities to baremaps Jul 1, 2024
@bchapuis bchapuis closed this Jul 1, 2024
@bchapuis bchapuis deleted the geotiff-martini branch July 1, 2024 21:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant