Giter VIP home page Giter VIP logo

Comments (4)

eliocamp avatar eliocamp commented on August 11, 2024

Hi!
Just add a second geom_contour()/geom_contour2() call with breaks = 1015 and increase its size.

from ggnewscale.

fipoucat avatar fipoucat commented on August 11, 2024

sorry eliocam opening this again.

I am still struggling with my attempt to add a thicker 1015 hPa contour line using below command. Could you help me adjust the code? something looks incorrect.

Thanks

# Plotting the main atmospheric patterns of such a classification
ggplot()+
  geom_raster(filter(cl$grid_clas, var == "mslp"),
              mapping = aes(x,y,fill = mean_WT_value/100),
              interpolate = T,hjust = 0,vjust = 0)+
  geom_sf(data = borders, fill = "transparent")+
  geom_contour2(data = filter(cl$grid_clas,var == "mslp"),
                aes(x,y,z=mean_WT_value/100),
                binwidth = 2, color = "black", size=0.5) +
  geom_text_contour(data= filter(cl$grid_clas, var == "mslp"),
                    aes(x,y,z=mean_WT_value/100),
                    stroke = 0.15,binwidth = 4) +
  guides(fill = guide_colourbar(barwidth = 12, barheight = 0.5))+
  facet_wrap(~WT, ncol = 4) +
  scale_fill_gradientn(colours = pals::jet(100),name = "slp (hPa") +
  scale_x_continuous(limits = c(-35,25), expand = c(0, 0))+
  scale_y_continuous(limits = c(-5,40), expand = c(0,0))+
  theme_bw() +
  theme(
    panel.grid.major = element_blank(),
    panel.grid.minor = element_blank(),
    panel.background = element_blank(),
    text = element_text(size = 4),
    strip.background = element_rect(fill = "transparent", color = NA),
    axis.title = element_blank(),
    axis.text = element_blank(),
    axis.ticks = element_blank(),
    legend.position = "bottom")

ggplot()+
  geom_raster(filter(cl$grid_clas, var == "mslp"),
              mapping = aes(x,y,fill = mean_WT_value/100),
              interpolate = T,hjust = 0,vjust = 0)+
  geom_sf(data = borders, fill = "transparent")+
  geom_contour2(data = filter(cl$grid_clas,var == "mslp"),
                aes(x,y,z=mean_WT_value/100),
                breaks=1015 , color = "black", size=1.5) +
  geom_text_contour(data= filter(cl$grid_clas, var == "mslp"),
                    aes(x,y,z=mean_WT_value/100),
                    stroke = 0.15,binwidth = 4) +
  guides(fill = guide_colourbar(barwidth = 12, barheight = 0.5))+
  facet_wrap(~WT, ncol = 4) +
  scale_fill_gradientn(colours = pals::jet(100),name = "slp (hPa") +
  scale_x_continuous(limits = c(-35,25), expand = c(0, 0))+
  scale_y_continuous(limits = c(-5,40), expand = c(0,0))+
  theme_bw() +
  theme(
    panel.grid.major = element_blank(),
    panel.grid.minor = element_blank(),
    panel.background = element_blank(),
    text = element_text(size = 4),
    strip.background = element_rect(fill = "transparent", color = NA),
    axis.title = element_blank(),
    axis.text = element_blank(),
    axis.ticks = element_blank(),
    legend.position = "bottom")

from ggnewscale.

eliocamp avatar eliocamp commented on August 11, 2024

Hi, your code is very complex and I cannot run it because I don't have the data. You can draw a single thick contour line at 1015 hPa with geom_contour(...., breaks = 1015, linewidth = 1), where ... represents any other arguments such as the data, aesthetics, etc.

from ggnewscale.

fipoucat avatar fipoucat commented on August 11, 2024

from ggnewscale.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.