color palette

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
16 messages Options
Reply | Threaded
Open this post in threaded view
|

color palette

abergel
Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

PabloEstefo
Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes: 
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

abergel
Excellent! Super!

Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

> Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.
>
>
> These are the palettes:
> <PastedGraphic-6.tiff>
> Keep in tune ;-)
>
>
> On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:
>
>> Hi!
>>
>> Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
>> I know some of you are interested in that :-)
>>
>> Cheers,
>> Alexandre
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

PabloEstefo
Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
And you will get the code line to get them.
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes:
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

PabloEstefo
I forgot to mention that you need to update Roassal2 to latest version (267)

On Apr 25, 2014, at 0:13, Pablo Estefó <[hidden email]> wrote:

Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.
<Screenshot 2014-04-24 23.45.43.png>

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.<Screenshot 2014-04-24 23.46.46.png>

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
<Screenshot 2014-04-24 23.46.20.png>

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:
<PastedGraphic-8.tiff>

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
<Screenshot 2014-04-24 23.53.36.png>
And you will get the code line to get them.
<PastedGraphic-7.tiff>
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes:
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.








_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

jfabry
In reply to this post by PabloEstefo

That looks really cool!

On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

> Hi everyone,
>
> Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.
>
> So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.
>
> Sequential schemes are suited to ordered data that progress from low to high.
> <Screenshot 2014-04-24 23.45.43.png>
>
> Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
> .<Screenshot 2014-04-24 23.46.46.png>
>
> Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
> <Screenshot 2014-04-24 23.46.20.png>
>
> Picking the right scheme from a palette
> You can see all the color schemes for each palette by executing
> =.=.=.
> ColorPalette sequential show.
> ColorPalette diverging show.
> ColorPalette qualitative show.
> =.=.=.
> You should see something like this:
> <PastedGraphic-8.tiff>
>
> Getting colours from a scheme
> To get the colours for an specific scheme just clic on the name of the scheme
> <Screenshot 2014-04-24 23.53.36.png>
> And you will get the code line to get them.
> <PastedGraphic-7.tiff>
> Example:
> =.=.=.
> ColorPalette qualitative colors: 7 scheme:'Accent'
> =.=.=.
>
> If you want to focus on a specific color, just click on it to inspect it.
>
> Partitioning data into colors
> With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.
>
> Example:
> =.=.=.
>  RTBucketColorNormalizer example
> =.=.=.
>
> What do you think?
>
> Cheers,
> Pablo
>
> On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:
>
>> Excellent! Super!
>>
>> Alexandre
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>> On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:
>>
>>> Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.
>>>
>>>
>>> These are the palettes:
>>> <PastedGraphic-6.tiff>
>>> Keep in tune ;-)
>>>
>>>
>>> On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:
>>>
>>>> Hi!
>>>>
>>>> Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
>>>> I know some of you are interested in that :-)
>>>>
>>>> Cheers,
>>>> Alexandre
>>>> --
>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>> Alexandre Bergel  http://www.bergel.eu
>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>
>>>>
>>>>
>>>
>>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev



---> Save our in-boxes! http://emailcharter.org <---

Johan Fabry   -   http://pleiad.cl/~jfabry
PLEIAD lab  -  Computer Science Department (DCC)  -  University of Chile


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

Usman Bhatti
In reply to this post by PabloEstefo
That looks interesting. I'll give a try in the coming days.
Keep up the good work.

Usman


On Fri, Apr 25, 2014 at 5:13 AM, Pablo Estefó <[hidden email]> wrote:
Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
And you will get the code line to get them.
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes:
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

Gustavo Santos
whoa, this is really nice!

On Fri, Apr 25, 2014 at 9:46 AM, Usman Bhatti <[hidden email]> wrote:
That looks interesting. I'll give a try in the coming days.
Keep up the good work.

Usman


On Fri, Apr 25, 2014 at 5:13 AM, Pablo Estefó <[hidden email]> wrote:
Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
And you will get the code line to get them.
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes:
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev



_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


-- 
Gustavo Santos

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

abergel
In reply to this post by PabloEstefo
Excellent piece of work Pablo.
It works out of the box.

ColorPalette subclasses do: #show.

I like very much the small animations you did :-)

Alexandre


On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

> Hi everyone,
>
> Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.
>
> So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.
>
> Sequential schemes are suited to ordered data that progress from low to high.
> <Screenshot 2014-04-24 23.45.43.png>
>
> Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
> .<Screenshot 2014-04-24 23.46.46.png>
>
> Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
> <Screenshot 2014-04-24 23.46.20.png>
>
> Picking the right scheme from a palette
> You can see all the color schemes for each palette by executing
> =.=.=.
> ColorPalette sequential show.
> ColorPalette diverging show.
> ColorPalette qualitative show.
> =.=.=.
> You should see something like this:
> <PastedGraphic-8.tiff>
>
> Getting colours from a scheme
> To get the colours for an specific scheme just clic on the name of the scheme
> <Screenshot 2014-04-24 23.53.36.png>
> And you will get the code line to get them.
> <PastedGraphic-7.tiff>
> Example:
> =.=.=.
> ColorPalette qualitative colors: 7 scheme:'Accent'
> =.=.=.
>
> If you want to focus on a specific color, just click on it to inspect it.
>
> Partitioning data into colors
> With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.
>
> Example:
> =.=.=.
>  RTBucketColorNormalizer example
> =.=.=.
>
> What do you think?
>
> Cheers,
> Pablo
>
> On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:
>
>> Excellent! Super!
>>
>> Alexandre
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>> On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:
>>
>>> Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.
>>>
>>>
>>> These are the palettes:
>>> <PastedGraphic-6.tiff>
>>> Keep in tune ;-)
>>>
>>>
>>> On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:
>>>
>>>> Hi!
>>>>
>>>> Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
>>>> I know some of you are interested in that :-)
>>>>
>>>> Cheers,
>>>> Alexandre
>>>> --
>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>> Alexandre Bergel  http://www.bergel.eu
>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>
>>>>
>>>>
>>>
>>
>

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

abergel
In reply to this post by PabloEstefo
I’ve just played a bit with the new color palette and the Roassal graph builder.

Here are some screenshots:


Another example:



Cheers,
Alexandre


On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.
<Screenshot 2014-04-24 23.45.43.png>

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.<Screenshot 2014-04-24 23.46.46.png>

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
<Screenshot 2014-04-24 23.46.20.png>

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:
<PastedGraphic-8.tiff>

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
<Screenshot 2014-04-24 23.53.36.png>
And you will get the code line to get them.
<PastedGraphic-7.tiff>
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes: 
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

PabloEstefo
I’m glad you liked. I am anxious to see cool&beautiful examples using the new color schemes.

Alex added some screenshots on Facebook: https://www.facebook.com/ObjectProfile/posts/623124127774188?stream_ref=10

By the way, I want to be clear: I just brought to Pharo/Moose a work that you can find at www.colorbrewer2.org and here are the credits:

Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University.

Cheers,
Pablo


On Apr 25, 2014, at 9:13, Alexandre Bergel <[hidden email]> wrote:

I’ve just played a bit with the new color palette and the Roassal graph builder.

Here are some screenshots:

<Screen Shot 2014-04-25 at 8.58.21 AM.png>

Another example:

<Screen Shot 2014-04-25 at 9.01.56 AM.png>

<Screen Shot 2014-04-25 at 9.12.32 AM.png><Screen Shot 2014-04-25 at 9.13.07 AM.png>

Cheers,
Alexandre


On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.
<Screenshot 2014-04-24 23.45.43.png>

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.<Screenshot 2014-04-24 23.46.46.png>

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
<Screenshot 2014-04-24 23.46.20.png>

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:
<PastedGraphic-8.tiff>

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
<Screenshot 2014-04-24 23.53.36.png>
And you will get the code line to get them.
<PastedGraphic-7.tiff>
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes: 
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

Leo Perard
In reply to this post by abergel
I have to check this ColorPalette ! I'm working on vizualisation with legend and it could be really usefull !


On Fri, Apr 25, 2014 at 2:13 PM, Alexandre Bergel <[hidden email]> wrote:
I’ve just played a bit with the new color palette and the Roassal graph builder.

Here are some screenshots:


Another example:



Cheers,
Alexandre


On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.
<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.45.43.png>


Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.46.46.png>


Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.46.20.png>


Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:
<PastedGraphic-8.tiff>


Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.53.36.png>

And you will get the code line to get them.
<PastedGraphic-7.tiff>

Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes: 
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev




--
Leo Perard

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

SergeStinckwich
In reply to this post by PabloEstefo
Great stuff ! But what about the licence ? Could you use it inside tools ?

Envoyé de mon iPhone

Le 25 avr. 2014 à 19:53, Pablo Estefó <[hidden email]> a écrit :

I’m glad you liked. I am anxious to see cool&beautiful examples using the new color schemes.

Alex added some screenshots on Facebook: https://www.facebook.com/ObjectProfile/posts/623124127774188?stream_ref=10

By the way, I want to be clear: I just brought to Pharo/Moose a work that you can find at www.colorbrewer2.org and here are the credits:

Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University.

Cheers,
Pablo


On Apr 25, 2014, at 9:13, Alexandre Bergel <[hidden email]> wrote:

I’ve just played a bit with the new color palette and the Roassal graph builder.

Here are some screenshots:

<Screen Shot 2014-04-25 at 8.58.21 AM.png>

Another example:

<Screen Shot 2014-04-25 at 9.01.56 AM.png>

<Screen Shot 2014-04-25 at 9.12.32 AM.png><Screen Shot 2014-04-25 at 9.13.07 AM.png>

Cheers,
Alexandre


On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.
<Screenshot 2014-04-24 23.45.43.png>

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.<Screenshot 2014-04-24 23.46.46.png>

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
<Screenshot 2014-04-24 23.46.20.png>

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:
<PastedGraphic-8.tiff>

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
<Screenshot 2014-04-24 23.53.36.png>
And you will get the code line to get them.
<PastedGraphic-7.tiff>
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes: 
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

Tudor Girba-2
In reply to this post by PabloEstefo
This is quite beautiful. I could not stop and I integrated it in the inspector. To do this, I:
- split the show method such that the view instantiation is done separately from the rendering, and
- replaced the inspect interaction on click with a popup.

Then, I extended the inspector and it looks like this:

Inline image 2

To get it, you need the latest Roassal2 and GT-Inspector.

Doru



On Fri, Apr 25, 2014 at 2:53 PM, Pablo Estefó <[hidden email]> wrote:
I’m glad you liked. I am anxious to see cool&beautiful examples using the new color schemes.

Alex added some screenshots on Facebook: https://www.facebook.com/ObjectProfile/posts/623124127774188?stream_ref=10

By the way, I want to be clear: I just brought to Pharo/Moose a work that you can find at www.colorbrewer2.org and here are the credits:

Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University.

Cheers,
Pablo


On Apr 25, 2014, at 9:13, Alexandre Bergel <[hidden email]> wrote:

I’ve just played a bit with the new color palette and the Roassal graph builder.

Here are some screenshots:

<Screen Shot 2014-04-25 at 8.58.21 AM.png>

Another example:

<Screen Shot 2014-04-25 at 9.01.56 AM.png>

<Screen Shot 2014-04-25 at 9.12.32 AM.png><Screen Shot 2014-04-25 at 9.13.07 AM.png>

Cheers,
Alexandre


On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.
<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.45.43.png>

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.46.46.png>

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.46.20.png>

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:
<PastedGraphic-8.tiff>

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
<Screenshot <a href="tel:2014-04-24%2023" value="+12014042423" target="_blank">2014-04-24 23.53.36.png>
And you will get the code line to get them.
<PastedGraphic-7.tiff>
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes: 
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.





_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev




--

"Every thing has its own flow"

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

PabloEstefo
In reply to this post by SergeStinckwich
Hi Serge,
On Apr 25, 2014, at 10:20, Serge Stinckwich <[hidden email]> wrote:

Great stuff ! But what about the licence ? Could you use it inside tools ?

In their webpage[1] they specified that the license is Apache 2.0 [2]. And just in following section [3] they specify how to cite them.

Although I emailed Cynthia to tell her about this and asking about it.

Cheers,
Pablo



Envoyé de mon iPhone

Le 25 avr. 2014 à 19:53, Pablo Estefó <[hidden email]> a écrit :

I’m glad you liked. I am anxious to see cool&beautiful examples using the new color schemes.

Alex added some screenshots on Facebook: https://www.facebook.com/ObjectProfile/posts/623124127774188?stream_ref=10

By the way, I want to be clear: I just brought to Pharo/Moose a work that you can find at www.colorbrewer2.org and here are the credits:

Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University.

Cheers,
Pablo


On Apr 25, 2014, at 9:13, Alexandre Bergel <[hidden email]> wrote:

I’ve just played a bit with the new color palette and the Roassal graph builder.

Here are some screenshots:

<Screen Shot 2014-04-25 at 8.58.21 AM.png>

Another example:

<Screen Shot 2014-04-25 at 9.01.56 AM.png>

<Screen Shot 2014-04-25 at 9.12.32 AM.png><Screen Shot 2014-04-25 at 9.13.07 AM.png>

Cheers,
Alexandre


On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:

Hi everyone,

Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.

So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.

Sequential schemes are suited to ordered data that progress from low to high.
<Screenshot 2014-04-24 23.45.43.png>

Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
.<Screenshot 2014-04-24 23.46.46.png>

Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
<Screenshot 2014-04-24 23.46.20.png>

Picking the right scheme from a palette
You can see all the color schemes for each palette by executing
=.=.=.
ColorPalette sequential show.
ColorPalette diverging show.
ColorPalette qualitative show.
=.=.=.
You should see something like this:
<PastedGraphic-8.tiff>

Getting colours from a scheme
To get the colours for an specific scheme just clic on the name of the scheme
<Screenshot 2014-04-24 23.53.36.png>
And you will get the code line to get them.
<PastedGraphic-7.tiff>
Example: 
=.=.=.
ColorPalette qualitative colors: 7 scheme:'Accent'
=.=.=.

If you want to focus on a specific color, just click on it to inspect it.

Partitioning data into colors
With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.

Example:
=.=.=.
 RTBucketColorNormalizer example
=.=.=.

What do you think?

Cheers,
Pablo

On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:

Excellent! Super!

Alexandre

-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:

Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.


These are the palettes: 
<PastedGraphic-6.tiff>
Keep in tune ;-)


On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:

Hi!

Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
I know some of you are interested in that :-)

Cheers,
Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.







-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: color palette

abergel
In reply to this post by Tudor Girba-2
Excellent!

Alexandre


On Apr 25, 2014, at 10:23 AM, Tudor Girba <[hidden email]> wrote:

> This is quite beautiful. I could not stop and I integrated it in the inspector. To do this, I:
> - split the show method such that the view instantiation is done separately from the rendering, and
> - replaced the inspect interaction on click with a popup.
>
> Then, I extended the inspector and it looks like this:
>
> <colorpalette-in-inspector.png>
>
> To get it, you need the latest Roassal2 and GT-Inspector.
>
> Doru
>
>
>
> On Fri, Apr 25, 2014 at 2:53 PM, Pablo Estefó <[hidden email]> wrote:
> I’m glad you liked. I am anxious to see cool&beautiful examples using the new color schemes.
>
> Alex added some screenshots on Facebook: https://www.facebook.com/ObjectProfile/posts/623124127774188?stream_ref=10
>
> By the way, I want to be clear: I just brought to Pharo/Moose a work that you can find at www.colorbrewer2.org and here are the credits:
>
> Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University.
>
> Cheers,
> Pablo
>
>
> On Apr 25, 2014, at 9:13, Alexandre Bergel <[hidden email]> wrote:
>
>> I’ve just played a bit with the new color palette and the Roassal graph builder.
>>
>> Here are some screenshots:
>>
>> <Screen Shot 2014-04-25 at 8.58.21 AM.png>
>>
>> Another example:
>>
>> <Screen Shot 2014-04-25 at 9.01.56 AM.png>
>>
>> <Screen Shot 2014-04-25 at 9.12.32 AM.png><Screen Shot 2014-04-25 at 9.13.07 AM.png>
>>
>> Cheers,
>> Alexandre
>>
>>
>> On Apr 25, 2014, at 12:13 AM, Pablo Estefó <[hidden email]> wrote:
>>
>>> Hi everyone,
>>>
>>> Well, as you probably read, I was working on a Color palette. The thing is that i loved the color schemes from www.colorbrewer2.org , so I decided to bring them into Pharo/Moose then everyone can use them directly.
>>>
>>> So I created ColorPalette. A color palette is a collection of different color schemes that follows a common purpose, they are: sequential, qualitative and diverging.
>>>
>>> Sequential schemes are suited to ordered data that progress from low to high.
>>> <Screenshot 2014-04-24 23.45.43.png>
>>>
>>> Diverging schemes put equal emphasis on mid-range critical values and extremes at both ends of the data range
>>> .<Screenshot 2014-04-24 23.46.46.png>
>>>
>>> Qualitative schemes do not imply magnitude differences between legend classes, and hues are used to create the primary visual differences between classes .
>>> <Screenshot 2014-04-24 23.46.20.png>
>>>
>>> Picking the right scheme from a palette
>>> You can see all the color schemes for each palette by executing
>>> =.=.=.
>>> ColorPalette sequential show.
>>> ColorPalette diverging show.
>>> ColorPalette qualitative show.
>>> =.=.=.
>>> You should see something like this:
>>> <PastedGraphic-8.tiff>
>>>
>>> Getting colours from a scheme
>>> To get the colours for an specific scheme just clic on the name of the scheme
>>> <Screenshot 2014-04-24 23.53.36.png>
>>> And you will get the code line to get them.
>>> <PastedGraphic-7.tiff>
>>> Example:
>>> =.=.=.
>>> ColorPalette qualitative colors: 7 scheme:'Accent'
>>> =.=.=.
>>>
>>> If you want to focus on a specific color, just click on it to inspect it.
>>>
>>> Partitioning data into colors
>>> With Ricardo, we were working on a new normalizer to discretize a list of values into a smaller list of colours using Sequential or Diverging color schemes.
>>>
>>> Example:
>>> =.=.=.
>>>  RTBucketColorNormalizer example
>>> =.=.=.
>>>
>>> What do you think?
>>>
>>> Cheers,
>>> Pablo
>>>
>>> On Apr 24, 2014, at 11:33, Alexandre Bergel <[hidden email]> wrote:
>>>
>>>> Excellent! Super!
>>>>
>>>> Alexandre
>>>>
>>>> --
>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>> Alexandre Bergel  http://www.bergel.eu
>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>
>>>>
>>>>
>>>> On Apr 24, 2014, at 10:55 AM, Pablo Estefó <[hidden email]> wrote:
>>>>
>>>>> Yep. It is not completely integrated into Roassal2 Color Normalizers, I will announce it today.
>>>>>
>>>>>
>>>>> These are the palettes:
>>>>> <PastedGraphic-6.tiff>
>>>>> Keep in tune ;-)
>>>>>
>>>>>
>>>>> On Apr 24, 2014, at 10:39, Alexandre Bergel <[hidden email]> wrote:
>>>>>
>>>>>> Hi!
>>>>>>
>>>>>> Just to say that Pablo is working on a harmonized color set for Roassal2. He will probably announce it soon :-)
>>>>>> I know some of you are interested in that :-)
>>>>>>
>>>>>> Cheers,
>>>>>> Alexandre
>>>>>> --
>>>>>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>>>>>> Alexandre Bergel  http://www.bergel.eu
>>>>>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>> --
>> _,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
>> Alexandre Bergel  http://www.bergel.eu
>> ^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.
>>
>>
>>
>
>
> _______________________________________________
> Moose-dev mailing list
> [hidden email]
> https://www.iam.unibe.ch/mailman/listinfo/moose-dev
>
>
>
>
> --
> www.tudorgirba.com
>
> "Every thing has its own flow"

--
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.




_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev