Commit fda00863 authored by Paul Asmuth's avatar Paul Asmuth
Browse files

add doc/examples/maps/gulf-of-mexico.clp

parent a310e1b4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -18,6 +18,10 @@
    - file: charts-editorial/stacked_bars
    - file: charts-editorial/barchart_horizontal

- section: Maps
  files:
    - file: maps/gulf-of-mexico

- section: Other Charts
  files:
    - file: charts-basic/custom_font
+34 −0
Original line number Diff line number Diff line
(width 2048px)
(height 1536px)
(dpi 320)

(default limit-x (-100 -77))
(default limit-y (16 32))

(plot/axes
    label-placement-x (linear 5)
    label-placement-y (linear 1)
    title-bottom "Longitude"
    title-left "Lattitude")

(draw/rectangle
    fill #eff7fe)

(plot/grid
    tick-placement-x (linear 5)
    tick-placement-y (linear 5)
    color (rgba 0 0 0 .1)
    stroke-style (dashed))

(plot/polygons
    data (geojson test/testdata/gulf_of_mexico.geojson)
    fill #ffefdb
    stroke-color #999187
    stroke-width .7pt)

(plot/labels
    data-x (-90)
    data-y (23.5)
    label-font-size 14pt
    label-color (rgba 0 0 0 .6)
    labels ("Gulf of Mexico"))
+185 −0

File added.

Preview size limit exceeded, changes collapsed.

+34 −0
Original line number Diff line number Diff line
(width 2048px)
(height 1536px)
(dpi 320)

(default limit-x (-100 -77))
(default limit-y (16 32))

(plot/axes
    label-placement-x (linear 5)
    label-placement-y (linear 1)
    title-bottom "Longitude"
    title-left "Lattitude")

(draw/rectangle
    fill #eff7fe)

(plot/grid
    tick-placement-x (linear 5)
    tick-placement-y (linear 5)
    color (rgba 0 0 0 .1)
    stroke-style (dashed))

(plot/polygons
    data (geojson test/testdata/gulf_of_mexico.geojson)
    fill #ffefdb
    stroke-color #999187
    stroke-width .7pt)

(plot/labels
    data-x (-90)
    data-y (23.5)
    label-font-size 14pt
    label-color (rgba 0 0 0 .6)
    labels ("Gulf of Mexico"))
+358 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading