Compass card: how to omit the directional indication?

Hi,
I am using the lovely custom Compass card like this:

Solar_sun_20230330-1110

This indicates both the sun azimuth and elevation relative to the solar panels on my roof.
However, for the elevation the directional indication “ENE” of course is irrelevant and incorrect.
But I cannot figure out how to omit this indication.
Does anyone have a clue how to do this?
Or is this currently not possible?

And another question: is it possible to change the icon in the upper right corner of the Compass cards?

This is my current code for the Compass cards:

type: horizontal-stack
cards:
  - type: custom:compass-card
    header:
      title:
        value: Zon azimut
    indicator_sensors:
      - sensor: sun.sun
        attribute: azimuth
        indicator:
          type: circle
    value_sensors:
      - sensor: sun.sun
        attribute: azimuth
    compass:
      circle:
        background_image: /local/OdD4_map.jpg
        background_opacity: 0.3
      north:
        show: true
        offset: 35.65
      east:
        show: true
      south:
        show: true
      west:
        show: true
  - type: custom:compass-card
    header:
      title:
        value: Zon elevatie
    indicator_sensors:
      - sensor: sensor.sun_elevation_solarpanel
        indicator:
          type: circle
    value_sensors:
      - sensor: sun.sun
        attribute: elevation
    compass:
      circle:
        background_image: /local/OdD4_side.jpg
        background_opacity: 0.3

And this is the sensor.sun_elevation_solarpanel code:

template:
- sensor:
    - name: Sun Elevation Solarpanel
      unit_of_measurement: "°"
      state: "{{ 90 - ( state_attr('sun.sun', 'elevation') ) | round(0) }}"
1 Like

For this question I found the answer myself: it indeed is possible to change the icon in the upper right corner.
This is some example code for this:

type: custom:compass-card
indicator_sensors:
  - sensor: sun.sun
    attribute: azimuth
    indicator:
      type: circle
compass:
  north:
    show: true
header:
  icon:
    value: mdi:weather-sunny
  title:
    value: Sun Azimuth

And this is the result:
CompassCard_Icon

So now only my question about how to not show the compass direction indication like SSE remains.
Anybody?

Yes!
I found to answer to my other question myself as well.
The visibility of the compass direction indication can indeed be controlled, with the state_abbreviation property.
This is a complete working example, with the abbreviation hidden and an alternative icon:

type: custom:compass-card
indicator_sensors:
  - sensor: sun.sun
    attribute: azimuth
    indicator:
      type: circle
    state_abbreviation:
      show: false
compass:
  north:
    show: true
header:
  icon:
    value: mdi:weather-sunny
  title:
    value: Sun Azimuth

And this is the result:
CompassCard_NoAbbreviation

Hello, it possible to have the wind name, Together with the cardinal names?