ಫೈಲ್:Periodic table, good SVG.svg

Page contents not supported in other languages.
ವಿಕಿಪೀಡಿಯರ್ದ್

ಮೂಲೊ ಫೈಲ್(ಎಸ್.ವಿ.ಜಿ ಫೈಲ್, ಸುಮಾರಾದ್ ೧,೧೭೬ × ೮೦೦ ಚಿತ್ರೊಬಿಂದು, ಫೈಲ್‍ದ ಗಾತ್ರ: ೨೦ KB)

ಈ ಪುಟೊ Wikimedia Commonsಡ್ದ್ ಬೈದ್ಂಡ್ ಬೊಕ್ಕ ಬೇತೆ ಯೋಜನೆಲೆಡ್ ಗಲಸೊಲಿ. ಕಡತ ವಿವರಣೆ ಪುಟತ ಮಿತ್ತ್ ವಿವರಣೆನ್ ತಿರ್ತ ಸಾಲ್‍ಡ್ ತೋಜಾದ್ಂಡ್.

ಸಾರಾಂಸೊ

ವಿವರಣೆ
English: A by-product of File:Monoisotopic, mononuclidic, radioactive elements.svg with more classical proportions of element cells, but without information about isotopes. These Perl programs generate a good, structured SVG code and may be modified further to create more sentient images that this concrete table.

Elements:

  •    Stable
  • Radioactive:
    • natural (industrially extractable)
    •    natural, marginally
    •    synthetic (purely)
209Bi is practically stable, so it is made orange, not red.
ದಿನೊ
ಮೂಲೊ ಸೊಂತೊ ರಚನೆ
ಲೇಕಕೆರ್ Incnis Mrsi
ಇತರೆ ಆವೃತ್ತಿಗಳು
SVG genesis
InfoField
 
The SVG code is valid.
 
This vector image was created with unknown tool.
 
 This file uses embedded text that can be easily translated using a text editor.

Source code

See File:Monoisotopic, mononuclidic, radioactive elements.svg for definition of the @elements array.

sub start_box {
  my $fill="";
  $fill=' style="fill:'.$_[2].'"' if ($_[2]);
  print "<g> <rect$fill x=\"".(16*$_[1]-15)."\" width=\"14\" y=\"".($_[0]-19)."\" height=\"18\"/> ";
};

sub make_text {
  my $cl="";
  $cl=' class="'.$_[3].'"' if ($_[3]);
  print "<text$cl x=\"".$_[0]."\" y=\"".$_[1]."\">".$_[2]."</text> ";
};

sub smart_symbol {
  make_text ($_[0], $_[1], $_[2], (length($_[2])>2)?"smallsym":"sym");
};

sub smart_number {
  my $x = $_[0] - 3;
  my $cl = "num";
  if ( $_[2] >=100 ) { $cl = "smallnum"; $x -= 3; }
  elsif ( $_[2] >=10 ) { $x -= 3; };
  make_text ($x, $_[1], $_[2], $cl);
};
  

sub print_Z {
  my $ref = $elements[$_[0]];
  return unless $ref;
  my $intro;
  my $base_y = 20 * $ref->[1];
  my $group = $ref->[2];
  if ($group == 1) { # First element in a period
    $intro = $ref->[1];
  }
  elsif (!$group) { 
    if ( $ref->[1] == 6) { # Lanthanoid
      if ($_[0] == 57) { # Lanthanum
        start_box($base_y, 3); make_text (37, $base_y-10, "*", "sym"); print "</g>";
        $intro = "* lanthanoids";
      };
      $base_y = 174;
      $group = $_[0] - 54;
    }
    elsif ( $ref->[1] == 7) { # Actinoid
      if ($_[0] == 89) { # Actinium
        start_box($base_y, 3); make_text (35, $base_y-10, "**", "sym"); print "</g>";
        $intro = "** actinoids";
      };
      $base_y = 194;
      $group = $_[0] - 86;
    }
    else { return; };
  };
  if ($intro) {
    print "\n";
    make_text (-5, $base_y-4, $intro) if ($intro);
    print "\n";
  };
  my $background = $ref->[3];
# this version is not focused on nuclides, recycling some stuff
  if ( $background =~ /\#FF00/ ) {
# we classify all unstable elements to nanural, marginally natural and unnatural in this version
    if ( $ref->[5] eq "0" ) {
      $background = '#CC00FF'; # I said: no natural isotopes
    }
    else {
      $background = (($_[0] == 90)||($_[0] == 92))?'#FF3333' # Th, U
      :'#FF33FF'; # marginally natural
    };
  }
  else {
    $background =~ s/\#..FF../\#FFFFFF/;
  };
  start_box ($base_y, $group, $background);
# no check for natural radionuclides in this version
  smart_number (16*$group-8, $base_y-5, $_[0]); # Atomic number
  smart_symbol (16*$group-13, $base_y-11, $ref->[0]); # Symbol
# no mass numbers in this version
  print "</g>\n"; # end box
};

print "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\
<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\
<svg xmlns=\"http://www.w3.org/2000/svg\" xml:space=\"preserve\" width=\"1176\" height=\"800\" viewBox=\"-5 -6 294 200\"\
 xmlns:xlink=\"http://www.w3.org/1999/xlink\">\
  <!-- see http://commons.wikimedia.org/wiki/File:Periodic_table,_good_SVG.svg for more information about the file -->
  <defs>\
    <style type=\"text/css\">\
      <![CDATA[\
	rect {stroke:#666666; stroke-width:1px; fill:none} /* for cells */\
	text {fill:#000000; font-family:sans; font-size:5px; stroke:none} /* periods and groups */\
	.sym {font-family:serif; font-size:7px}\
	.smallsym {font-family:serif; font-size:5.5px} /* Uu? */\
	.num {font-size:4px} /* up to 99 */\
	.smallnum {font-size:3px} /* 100 and greater */\
      ]]>\
    </style>\
  </defs>\n\n";

my $group;
  make_text ( 6, -1, 1);
  make_text (22, 18, 2);
for ( $group=3; $group<=12; $group++) { make_text(16*$group-10, 58, $group); };
for ($group=13; $group<=17; $group++) { make_text(16*$group-12, 18, $group); };
  make_text (276, -1, 18);

my $Z;
for ($Z=1; $Z<=119; $Z++) { print_Z ($Z); };
print "</svg>\n";

ಪರವಾನಿಗೆ

I, the copyright holder of this work, hereby publish it under the following licenses:
GNU head ಈ ಲೇಕನೊನು ಫ್ರೀ ಸಾಫ್ಟ್‌ವೇರ್ ಫೌಂಡೇಶನ್ಡ್ದ್ ಪ್ರಕಟನೆ ಆಯಿನ ಜಿ‌ಎನ್‌ಯು ಫ್ರೀ ಡಾಕ್ಯುಮೆಂಟೇಶನ್ ಲೈಸೆನ್ಸ್, ಆವೃತ್ತಿ 1.2 ಅತ್ತ್‌ಡ ಬೊಕ್ಕ ಪ್ರಕಟನೆ ಆಯಿನ ಒವ್ವೇ ಆವೃತ್ತಿದ ನಿಬಂದನೆದಡಿಟ್; ಬದಲ್ ಮಲ್ಪೆರಾವಂದಿನ ವಿಬಾಗೊಲು ದಾಂತೆ, ಫ್ರಂಟ್-ಕವರ್ ಬರವು ದಾಂತೆ, ಬೊಕ್ಕ ಬ್ಯಾಕ್-ಕವರ್ ಬರವು ದಾಂತೆ; ನಕಲ್ ಮಲ್ಪೆರೆ, ವಿತರಣೆ ಮಲ್ಪೆರೆ ಅತ್ತ್‌ಡ ಬದಲ್ ಮಲ್ಪೆರೆ ಒಪ್ಪಿಗೆ ಉಂಡು. ಈ ಲೈಸೆನ್ಸ್‌ದ ಒಂಜಿ ಪ್ರತಿ ಜಿ‌ಎನ್‌ಯು ಫ್ರೀ ಡಾಕ್ಯುಮೆಂಟೇಶನ್ ಲೈಸೆನ್ಸ್ ಪನ್ಪಿ ವಿಬಾಗೊಡು ಉಂಡು.
w:en:Creative Commons
ಕೃಪೆ ಇತ್ತಿನ ಲೆಕೊನೆ ಪಟ್ಟ್‌ಲೆ
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported, 2.5 Generic, 2.0 Generic and 1.0 Generic license.
ಇರೆಗ್ ಸೊಸಂತ್ರೊ ಉಂಡು:
  • ಪಟ್ಯರಗ್ – ಬೇಲೆನ್ ನಕಲ್, ವಿತರಣೆ ಮಲ್ಪೆರೆ ಬೊಕ್ಕ ಸಾಗಾಯೆರೆ
  • ಮಿಸ್ರೊ ಮಲ್ಪೆರೆ – ಈ ಬೇಲೆನ್ ಗಲಸೊನಿಯೆರೆ
ಈ ತಿರ್ತ್‍ದ ಸರತ್ತುಲೆಡ್:
  • ಕೃಪೆ – ಲೇಕಕೆರ್ ಅತ್ತಂಡ ಲೈಸನ್ಸರ್ ವ್ಯಕ್ತೊ ಮಲ್ತಿನ ರೀತಿಡ್ ಲೇಕನೊದ ಶ್ರೇಯೊನು (ಕ್ರೆಡಿಟ್) ಅರೆಗ್ ಕೊರೊಡು .(ಆಂಡ ಇರೆನ್ ಅತ್ತಂಡ ಈರ್ ಲೇಕನೊನು ಗಲಸಿನೇನ್ ಆರ್ ಸಮರ್ಥನೆ ಮಲ್ತಿಲೆಕೊ ತೊಜಪಾವುನ ರೀತಿಡ್ ಅತ್ತ್).
  • ಇತ್ತಿನ ಲೆಕೊನೆ ಪಟ್ಟ್‌ಲೆ – ಈರ್ ಈ ಕೃತಿನ್ ಬದಲಾವಣೆ ಅತ್ತಂಡ ರೂಪಾಂತರ ಮಲ್ತ್‌ಂಡ, ಅತ್ತಂಡ ಈ ಕೃತಿತ ಮಿತ್ತ್ ಬೇತೆ ದಾಲ ಬೇಲೆ ಮಲ್ತ್ಂಡ, ಐತ ಫಲಿತಾಂಸೊ ಕೃತಿನ್ ಈ ಲೈಸೆನ್ಸ್ ಅತ್ತಂಡ ಇಂಚಿಂತನೆ ಲೈಸೆನ್ಸ್‌ದ ತಿರ್ತ್ ಮಾತ್ರ ವಿತರಣೆ ಮಲ್ಪೊಲಿ.
ಈರೆನ ಇಷ್ಟೊದ ಪರವಾನಿಗೆನ್ ಈರ್ ಆಯ್ಕೆ ಮಲ್ತೊನೊಲಿ

Captions

ಈ ಕಡತ ತೋಜಾವುನ ಮಾಹಿತಿದ ಒಂಜಿ ಗೆರೆತ ವಿವರಣೆ ಸೇರಾಲೆ.
Modern Periodic Table

Items portrayed in this file

depicts ಇಂಗ್ಲಿಷ್

some value

author name string ಇಂಗ್ಲಿಷ್: Incnis Mrsi
Wikimedia username ಇಂಗ್ಲಿಷ್: Incnis Mrsi

copyright status ಇಂಗ್ಲಿಷ್

copyrighted ಇಂಗ್ಲಿಷ್

ಉಪಕ್ರಮ ಕನ್ನಡ

೨೨ ಅಕ್ಟೋಬರ್ 2012

source of file ಇಂಗ್ಲಿಷ್

original creation by uploader ಇಂಗ್ಲಿಷ್

media type ಇಂಗ್ಲಿಷ್

image/svg+xml

ಫೈಲ್‍ದ ಇತಿಹಾಸೊ

ದಿನೊ/ಪೊರ್ತುದ ಮಿತ್ತ್ ಒತ್ತ್ಂಡ ಫೈಲ್‍ ಆ ಪೊರ್ತುಡು ಎಂಚ ತೋಜೊಂದಿತ್ತ್ಂಡ್ ಪಂದ್ ತೂವೊಲಿ.

ದಿನೊ/ಪೊರ್ತುಎಲ್ಯಚಿತ್ರೊಆಯಾಮೊಲುಬಳಕೆದಾರೆರ್ಅಬಿಪ್ರಾಯೊ
ಇತ್ತೆದ೨೨:೨೪, ೯ ಅಕ್ಟೋಬರ್ ೨೦೨೦೨೨:೨೪, ೯ ಅಕ್ಟೋಬರ್ ೨೦೨೦ತ ಆವೃತ್ತಿದ ಎಲ್ಯಚಿತ್ರೊ೧,೧೭೬ × ೮೦೦ (೨೦ KB)BurzuchiusReverted to version as of 13:09, 11 November 2018 (UTC)
೧೯:೫೬, ೨೧ ಸಪ್ಟಂಬರ್ ೨೦೨೦೧೯:೫೬, ೨೧ ಸಪ್ಟಂಬರ್ ೨೦೨೦ತ ಆವೃತ್ತಿದ ಎಲ್ಯಚಿತ್ರೊ೧,೧೭೬ × ೮೦೦ (೨೧ KB)Once4O4Reverted to version as of 11:40, 30 November 2016 (UTC)
೧೮:೩೯, ೧೧ ನವಂಬರ್ ೨೦೧೮೧೮:೩೯, ೧೧ ನವಂಬರ್ ೨೦೧೮ತ ಆವೃತ್ತಿದ ಎಲ್ಯಚಿತ್ರೊ೧,೧೭೬ × ೮೦೦ (೨೦ KB)TilmannRAm (95), Cm (96), Bk (97), and Cf (98) are purely synthetic. Uue (119) has not yet been synthesized. (Wikipedia illustration workshop request)
೧೭:೧೦, ೩೦ ನವಂಬರ್ ೨೦೧೬೧೭:೧೦, ೩೦ ನವಂಬರ್ ೨೦೧೬ತ ಆವೃತ್ತಿದ ಎಲ್ಯಚಿತ್ರೊ೧,೧೭೬ × ೮೦೦ (೨೧ KB)Wiki LICIUPAC 2016/11/28 actualization: Uut>>Nh Uup>>Mc Uus>>Ts Uuo>>Og
೦೩:೨೧, ೨೩ ಅಕ್ಟೋಬರ್ ೨೦೧೨೦೩:೨೧, ೨೩ ಅಕ್ಟೋಬರ್ ೨೦೧೨ತ ಆವೃತ್ತಿದ ಎಲ್ಯಚಿತ್ರೊ೧,೧೭೬ × ೮೦೦ (೨೧ KB)Incnis Mrsicorrected in line with w: Synthetic element
೦೦:೪೦, ೨೩ ಅಕ್ಟೋಬರ್ ೨೦೧೨೦೦:೪೦, ೨೩ ಅಕ್ಟೋಬರ್ ೨೦೧೨ತ ಆವೃತ್ತಿದ ಎಲ್ಯಚಿತ್ರೊ೧,೧೭೬ × ೭೮೪ (೨೧ KB)Incnis Mrsi== {{int:filedesc}} == {{Information |Description ={{en|1=A by-product of File:Monoisotopic, mononuclidic, radioactive elements.svg with more classical proportions of element cells, but without information about isotopes. This concrete SVG imag...

ಈ ಫೈಲ್‍ಗ್ ಸಂಪರ್ಕೊ ಉಪ್ಪುನ ವಾ ಪುಟೊಲಾ ಇಜ್ಜಿ.

ಜಾಗತಿಕೊ ಫೈಲ್ ಉಪಯೋಗೊ

ಈ ಫೈಲ್‍ನ್ ತಿರ್ತ್ ಉಪ್ಪುನ ಬೇತೆ ವಿಕಿಲು ಗಲಸುವ:

ಮೆಟಾಡೇಟಾ

"https://tcy.wikipedia.org/wiki/ಫೈಲ್:Periodic_table,_good_SVG.svg"ಡ್ದ್ ದೆತ್ತೊಂದುಂಡು