Skip to content

Commit

Permalink
Fixes issue #24
Browse files Browse the repository at this point in the history
The discrete versions of the "bamako" scientific colormaps have been put in the "Diverging" category but they should be in the "Sequential" category with the continuous version.
src/colormaps_info.f90
  • Loading branch information
vmagnin committed Feb 4, 2024
1 parent 11e60a2 commit 4fb9199
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/colormaps_info.f90
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
! SOFTWARE.
!-------------------------------------------------------------------------------
! Contributed by gha3mi: 2023-11-05
! Last modification: gha3mi 2024-01-06
! Last modification: gha3mi 2024-01-06, vmagnin 2024-02-04
!-------------------------------------------------------------------------------

module forcolormap_info
Expand Down Expand Up @@ -610,7 +610,7 @@ pure elemental subroutine set_all(this)
call this%colormaps(i)%set_info(&
name = "bamako10",&
family = "bamako",&
gradient = "Diverging",&
gradient = "Sequential",&
palette = "Discrete",&
levels = 10, &
colorbar = "bamako10_colorbar.ppm",&
Expand All @@ -624,7 +624,7 @@ pure elemental subroutine set_all(this)
call this%colormaps(i)%set_info(&
name = "bamako100",&
family = "bamako",&
gradient = "Diverging",&
gradient = "Sequential",&
palette = "Discrete",&
levels = 100, &
colorbar = "bamako100_colorbar.ppm",&
Expand All @@ -638,7 +638,7 @@ pure elemental subroutine set_all(this)
call this%colormaps(i)%set_info(&
name = "bamako25",&
family = "bamako",&
gradient = "Diverging",&
gradient = "Sequential",&
palette = "Discrete",&
levels = 25, &
colorbar = "bamako25_colorbar.ppm",&
Expand All @@ -652,7 +652,7 @@ pure elemental subroutine set_all(this)
call this%colormaps(i)%set_info(&
name = "bamako50",&
family = "bamako",&
gradient = "Diverging",&
gradient = "Sequential",&
palette = "Discrete",&
levels = 50, &
colorbar = "bamako50_colorbar.ppm",&
Expand Down

0 comments on commit 4fb9199

Please sign in to comment.