a00.csv - Births of 2000 in France
From Didier Castille data

This dataset contains all births in France of year 2000.
  • Anonymous data
  • Birth day but no birth time
In 2020, at the initiative of Nick Kollerstrom, I (Thierry Graff) could contact Didier Castille and he sent us a sample of his data.
He agreed to make them publicly available online but asked to accompany the data with this notice:
These files are not INSEE files, they are INSEE files adapted by D. Castille.
These files are neither official nor scientifically valid because they depend on the good faith of D. Castille.
Abbreviations used in this page:
M = Mother, F = Father, C = Child, W = Wedding

The raw file

Lines with M F C W 321 838 54.4 %
Lines with M F C 270 098 45.6 %
Total number of lines 591 936 100 %
Number of birth dates 1 775 808
Number of wedding dates 321 838
Total number of dates 2 097 646


Obsolete doc (2020)



https://tig12.github.io/g5/anon-castille.html Each line contains untimed birth days of mother, father and child ; 321 838 lines contain wedding dates (54.37 %).
Generated graphics are in https://g5.tig12.net/observe/insee/a00/ Commands to execute all steps :
php run-observe.php insee/a00 convert
php run-observe.php insee/a00 planets
php run-observe.php insee/a00 aspects
php run-observe.php insee/a00 group
php run-observe.php insee/a00 view

Command file

The command file is commands/insee/a00.yml
convert:
  command: convertFile
  input-file: data/a00.csv
  actions:
    - ymd2iso anais00 mnais00 jnais00 -> C
    - ymd2iso ANAISM MNAISM JNAISM    -> M
    - ymd2iso ANAISP MNAISP JNAISP    -> F
  output-file: tmp/a00-ymd.csv

planets:
  command: computeAstro
  input-file: tmp/a00/a00-ymd.csv
  actions:
    - planets C SO MO ME VE MA JU SA UR NE PL NN
    - planets M SO MO ME VE MA JU SA UR NE PL NN
    - planets F SO MO ME VE MA JU SA UR NE PL NN
  output-file: tmp/a00/a00-coords.csv

aspects:
  command: aspects
  input-file: tmp/a00/a00-coords.csv
  actions:
    - C-* M-*
    - C-* F-*
    - M-* F-*
  output-file: tmp/a00/a00-aspects.csv

group:
  command: groupByNumber
  input-file: tmp/a00/a00-aspects.csv
  cols: '*'
  range: 360
  output-dir: tmp/a00/a00-aspects

view:
    command: view\pages
    input-dir: tmp/a00/a00-aspects
    output-dir: tmp/a00/a00-html
    view:
      command: view\bar
      assoc: false
      col: 1
    pages:
      -
        title: a00 Mother Child aspects
        input-files: C-*--M-*.csv
        #subtitle-template: '{IAA($1)} child - {IAA($2)} mother'
        output-file: mother-child.html
      -
        title: a00 Father Child aspects
        input-files: C-*--F-*.csv
        #subtitle-template: '{IAA($1)} child - {IAA($2)} father'
        output-file: father-child.html
      -
        title: a00 Mother Father aspects
        input-files: M-*--F-*.csv
        #subtitle-template: '{IAA($1)} mother - {IAA($2)} father'
        output-file: mother-father.html