File: logo.md

package info (click to toggle)
python-geopandas 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,752 kB
  • sloc: python: 26,021; makefile: 147; sh: 25
file content (87 lines) | stat: -rw-r--r-- 1,909 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# GeoPandas logo

GeoPandas project uses a logo derived from [`pandas` logo](https://pandas.pydata.org/about/citing.html), enclosing it in a globe illustrating the geographic nature of our data.

## Versions

We have four versions of our logo:

### Primary logo

The primary logo should be used in a majority of cases. Inverted logo or icon should be used only when necessary.

```{image} ../_static/logo/geopandas_logo.png
:alt: geopandas-logo
:align: center
```

### Inverted colors

If you want to place the GeoPandas logo on a dark background, use the inverted version.

```{image} ../_static/logo/geopandas_logo_green.png
:alt: geopandas-logo-green
:align: center
```

### Icon

Although it is possible to use icon independently, we would prefer using the complete variant above.

```{image} ../_static/logo/geopandas_icon.png
:alt: geopandas-icon
:width: 25%
:align: center
```

### Inverted icon

```{image} ../_static/logo/geopandas_icon_green.png
:alt: geopandas-icon-green
:width: 25%
:align: center
```

## Download

You can download all version in SVG and PNG from [GitHub repository](https://github.com/geopandas/geopandas/tree/main/doc/source/_static/logo).

## Colors

Pink and yellow accent colors are shared with `pandas`.

### Green

```{raw} html
<svg xmlns="http://www.w3.org/2000/svg" width="75" height="75" style="float: left">
    <circle cx="33" cy="33" r="33" fill="#139C5A"></circle>
</svg>
```

**HEX:** #139C5A

**RGB:** (19, 156, 90)

### Yellow

```{raw} html
<svg xmlns="http://www.w3.org/2000/svg" width="75" height="75" style="float: left">
    <circle cx="33" cy="33" r="33" fill="#FFCA00"></circle>
</svg>
```

**HEX:** #FFCA00

**RGB:** (255, 202, 0)

### Pink

```{raw} html
<svg xmlns="http://www.w3.org/2000/svg" width="75" height="75" style="float: left">
    <circle cx="33" cy="33" r="33" fill="#E70488"></circle>
</svg>
```

**HEX:** #E70488

**RGB:** (231, 4, 136)