From 4d0c060375496d815d50112ada43a42b1a4578fa Mon Sep 17 00:00:00 2001 From: pneumatick <55963487+pneumatick@users.noreply.github.com> Date: Wed, 3 Jul 2024 14:31:14 -0400 Subject: [PATCH 1/3] Add a way to pass commands from a file --- src/cleanup/cleanup_script.py | 33 +++++++++++++++++++++++++++++++++ tests/test_commands.csv | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 tests/test_commands.csv diff --git a/src/cleanup/cleanup_script.py b/src/cleanup/cleanup_script.py index a639631..d919efa 100644 --- a/src/cleanup/cleanup_script.py +++ b/src/cleanup/cleanup_script.py @@ -172,6 +172,33 @@ def normalize_numeric_col(df, columns=[]): return df +def commands_from_file(args): + """ + Read commands and their arguments from a file. + + Expected file format: + - Each command on its own line + - Each line's values are separated by commas (csv file ideal) + - The first value of each line is the command, the rest are its arguments (if any) + """ + + filename = args.commandfile + + command_lines = [] + with open(filename, 'r') as file: + for line in file: + line = line.rstrip('\n') + command_lines.append(line.split(',')) + + for line in command_lines: + command = line[0] + columns = line[1:] + if getattr(args, command, None) == None: + setattr(args, command, columns) + + file.close() + return args + def main(): parser = argparse.ArgumentParser(description=__doc__) @@ -229,6 +256,10 @@ def main(): nargs=1, help='Drop blank (NA) rows in the specified column.' ) + parser.add_argument( + '--commandfile', + help="Use commands and arguments from a comma separated file. Manually entered commands will override those in the file." + ) args = parser.parse_args() @@ -245,6 +276,8 @@ def main(): raise Exception("Unsupported input file type or file name missing extension. Supported file types: csv, json") # Execute cleanup functions based on command line arguments + if args.commandfile != None: + args = commands_from_file(args) if args.removews != None: df = remove_whitespace(df, args.removews) if args.tobool != None: diff --git a/tests/test_commands.csv b/tests/test_commands.csv new file mode 100644 index 0000000..8a907dc --- /dev/null +++ b/tests/test_commands.csv @@ -0,0 +1,2 @@ +normcols,Pyramid Owner,Pyramid Complex +removews,Gender From 43ad401eddab05e129ef42ef318a80632d4e410a Mon Sep 17 00:00:00 2001 From: pneumatick <55963487+pneumatick@users.noreply.github.com> Date: Fri, 5 Jul 2024 10:09:38 -0400 Subject: [PATCH 2/3] Create list of commands to clean up the main dataset; Include updated datasets --- assets/normalized_pyramid_data.csv | 50 ++++++++++---------- assets/raw_pyramid_data.csv | 13 +++-- src/cleanup/old_kingdom_pyramid_commands.csv | 5 ++ tests/test_commands.csv | 2 - 4 files changed, 39 insertions(+), 31 deletions(-) create mode 100644 src/cleanup/old_kingdom_pyramid_commands.csv delete mode 100644 tests/test_commands.csv diff --git a/assets/normalized_pyramid_data.csv b/assets/normalized_pyramid_data.csv index 6788f49..f0a1f7d 100644 --- a/assets/normalized_pyramid_data.csv +++ b/assets/normalized_pyramid_data.csv @@ -1,21 +1,21 @@ -pyramid_owner,pyramid_complex,gender,daughter_of,royal_mother_title,likely_wife,wife_title,vizier,regent,relationship_to_king,start_of_reign,end_of_reign,length_of_reign,period,dynasty,title,pyramid_texts,site_or_location,orientation,casing,state_of_completion,superstructure_type,height,length,width,angle,notes -Djoser,Djoser,King,,False,False,False,False,False,,2630.0,2611.0,19.0,Old Kingdom,3.0,Step Pyramid of Djoser,,Saqqara,N-S,Limestone,,Pyramid,59.9,120,108,74,"15 gates, white limestone casing" -Sekhemkhet,Sekhemkhet,King,,False,False,False,False,False,,2611.0,2603.0,8.0,Old Kingdom,3.0,Unfinished Step Pyramid of Sekhemhet,,Saqqara,N-S,Limestone,Unfinished,Pyramid,70,120,120,71-75,"niched facade, unfinished, left with rough exterior no smoothed limestone, (Verner mentions limestone casing) , ""probably intended to rise about 70 m (230 ft), in seven steps - higher than Djoser's."" (Lehner, 94)" -Nebka?,Nebka?,King,,False,False,False,False,False,,2649.0,2630.0,19.0,Old Kingdom,3.0,Unfinished Pyramid,,Zawiyet el-Aryan,E-W,Unknown,Unfinished,Pyramid,,200,200,,debate over whether this is Pyramid of Nebka -Khaba,Khaba,King,,False,False,False,False,False,,2603.0,2599.0,4.0,Old Kingdom,3.0,Layer Pyramid,,Zawiyet el-Aryan,E-W,Unknown,Unfinished,Pyramid,42,83.8,83.8,,began as step pyramid +pyramid_owner,pyramid_complex,royal_status,daughter_of,royal_mother_title,likely_wife,wife_title,vizier,regent,relationship_to_king,start_of_reign,end_of_reign,length_of_reign,period,dynasty,title,pyramid_texts,site_or_location,orientation,casing,state_of_completion,superstructure_type,height,length,width,angle,notes +Djoser,Djoser,King,,False,False,False,False,False,,2630.0,2611.0,19.0,Old Kingdom,3.0,Step Pyramid of Djoser,,Saqqara,N-S,Limestone,,Pyramid,59.9,120.0,108.0,74,"15 gates, white limestone casing" +Sekhemkhet,Sekhemkhet,King,,False,False,False,False,False,,2611.0,2603.0,8.0,Old Kingdom,3.0,Unfinished Step Pyramid of Sekhemhet,,Saqqara,N-S,Limestone,Unfinished,Pyramid,70,120.0,120.0,71-75,"niched facade, unfinished, left with rough exterior no smoothed limestone, (Verner mentions limestone casing) , ""probably intended to rise about 70 m (230 ft), in seven steps - higher than Djoser's."" (Lehner, 94)" +Nebka?,Nebka?,King,,False,False,False,False,False,,2649.0,2630.0,19.0,Old Kingdom,3.0,Unfinished Pyramid,,Zawiyet el-Aryan,E-W,Unknown,Unfinished,Pyramid,,200.0,200.0,unknown,debate over whether this is Pyramid of Nebka +Khaba,Khaba,King,,False,False,False,False,False,,2603.0,2599.0,4.0,Old Kingdom,3.0,Layer Pyramid,,Zawiyet el-Aryan,E-W,Unknown,Unfinished,Pyramid,42,83.8,83.8,unknown,began as step pyramid Sneferu,Sneferu 1,King,,False,False,False,False,False,,2599.0,2575.0,24.0,Old Kingdom,4.0,Meidum Pyramid,,Meidum,E-W,Limestone,Unfinished,Pyramid,94.5,144.32,144.32,52,"limestone casing, causeway 200m, Cult Pyramid - 26 m, 75 degree angle (Verner)" Sneferu,Sneferu 2,King,,False,False,False,False,False,,2575.0,2551.0,24.0,Old Kingdom,4.0,Bent Pyramid,,Dahshur,E-W,Limestone,,Pyramid,105.07,188.6,188.6,"lower angle 54, upper angle 43","limestone casing, Cult Pyramid - 52 m side, 44 degree angle, 26 m height" Sneferu,Sneferu 3,King,,False,False,False,False,False,,,,,Old Kingdom,4.0,Red Pyramid,,Dahshur,E-W,Limestone,,Pyramid,109.54,219.08,219.08,43,"red granite false door, no Cult Pyramid, causeway not completed" Khufu,Khufu,King,,False,False,False,False,False,,2551.0,2528.0,23.0,Old Kingdom,4.0,Pyramid of Khufu,,Giza,,Limestone,,Pyramid,146.59,230.33,230.33,51,"Cult Pyramid - 21.75m (base), 51 degree angle, 13.80 m height, limestone core and casing, likely moves to Giza for the space to build a large pyramid where there was a supply of limestone (Verner) extensive building - king chamber, queen chamber, mortuary and valley temple, boat pits" Meretites I,Khufu,Queen,,False,True,True,False,False,"Wife of Sneferu, Wife of Khufu",,,,Old Kingdom,4.0,Pyramid G 1-a,,Giza,,Limestone,,Pyramid,30,46.5,46.5,51,"core of limestone, includes temple, chapel, boat pit" Unknown,Khufu,Queen,,False,True,False,False,False,Unknown,,,,Old Kingdom,4.0,Pyramid G 1-b,,Giza,,Limestone,,Pyramid,30,46.5,46.5,51,"Queen unknown, similar to GI-a" -Henutsen,Khufu,Queen,,False,True,True,False,False,Wife of Khufu,,,,Old Kingdom,4.0,Pyramid G 1-c,,Giza,,Limestone,Unfinished,Pyramid,30,42.85,42.85,51,"casing unfinished, no boat pit, includes temple" -Djedefre,Djedefre,King,,False,False,False,False,False,,2528.0,2520.0,8.0,Old Kingdom,4.0,Pyramid of Djedefre,,Abu Roash,E-W,"Limestone, Granite",Unfinished,Pyramid,67,106,106,52,"limestone casing, red granite casing on lower areas, because of the Rocky Hill the Pyramid was built on, while lower in height than the Pyramid of Khufu, Djedefre's pyramid surpassed the top of Khufu's Pyramid. (Verner, 161) Complex built in haste and parts remained unfinsihed likely due to King's ""early death"" (Verner 165) Cult Pyramid - 10.5 m base, 65 degree angle" +Henutsen,Khufu,Queen,,False,True,True,False,False,Wife of Khufu,,,,Old Kingdom,4.0,Pyramid G 1-c,,Giza,,Limestone,Unfinished,Pyramid,30,42.85,42.85,51?,"casing unfinished, no boat pit, includes temple" +Djedefre,Djedefre,King,,False,False,False,False,False,,2528.0,2520.0,8.0,Old Kingdom,4.0,Pyramid of Djedefre,,Abu Roash,E-W,"Limestone, Granite",Unfinished,Pyramid,67,106.0,106.0,52,"limestone casing, red granite casing on lower areas, because of the Rocky Hill the Pyramid was built on, while lower in height than the Pyramid of Khufu, Djedefre's pyramid surpassed the top of Khufu's Pyramid. (Verner, 161) Complex built in haste and parts remained unfinsihed likely due to King's ""early death"" (Verner 165) Cult Pyramid - 10.5 m base, 65 degree angle" Khafre,Khafre,King,,False,False,False,False,False,,2520.0,2494.0,26.0,Old Kingdom,4.0,Pyramid of Khafre,,Giza,,"Limestone, Granite",,Pyramid,143.8,215.16,215.16,53,"bottom course, lower levels of casing made of red granite, then limestone casing, core of pyramid less carefully constructed than Khufu's pyramid, two entrances (indicate modification of plans), red granite sarcophagus, mortuary temple and boat pits outside it, valley temple, seems lot of use of red granite in this complex" Menkaure,Menkaure,King,,False,False,False,False,False,,2490.0,2472.0,18.0,Old Kingdom,4.0,Pyramid of Menkaure,,Giza,,"Limestone, Granite",,Pyramid,65.55,105.5,105.5,51,"bottom courses made of red granite casing, then limestone casing, burial chamber N-S in contrast to Khufu and Khafre, likely carried out as addition (technically demanding) made of red granite (Verner 191), portcullis likely unfinished before King died. Mortuary temple completed with mudbrick casing by successor as likely is the causeway. No boat pits, no cemetary for relatives or high officials. Questions over length of reign, red granite casing maybe used to make up for smaller size, but this unfinsihed (Verner, 200)" -Khamerernebty II,Menkaure,Queen,Khafre,False,True,True,False,False,"Wife of Menkaure, Daughter of Khafre",,,,Old Kingdom,4.0,Pyramid G 111-a,,Giza,,"Limestone, Granite",,Pyramid,28.4,44,44,52,"originally intended as cult pyramid, true pyramid with casing, limestone and bottom courses of red granite casing, mortuary temple" -Unknown,Menkaure,Queen,,False,True,False,False,False,Likely wife but Identity unknown,,,,Old Kingdom,4.0,Pyramid G 111-b,,Giza,,Not Cased,,Pyramid,21.18,31.24,31.24,,"four step core, built with limestone, not cased, small mudbrick temple" -Unknown,Menkaure,Queen,,False,True,False,False,False,Likely wife but Identity unknown,,,,Old Kingdom,4.0,Pyramid G 111-c,,Giza,,Not Cased,,Pyramid,21.2,29.17,29.17,,"four step core, built with limestone, not cased" +Khamerernebty II,Menkaure,Queen,Khafre,False,True,True,False,False,"Wife of Menkaure, Daughter of Khafre",,,,Old Kingdom,4.0,Pyramid G 111-a,,Giza,,"Limestone, Granite",,Pyramid,28.4,44.0,44.0,52,"originally intended as cult pyramid, true pyramid with casing, limestone and bottom courses of red granite casing, mortuary temple" +Unknown,Menkaure,Queen,,False,True,False,False,False,Likely wife but Identity unknown,,,,Old Kingdom,4.0,Pyramid G 111-b,,Giza,,Not Cased,,Pyramid,21.18,31.24,31.24,unknown,"four step core, built with limestone, not cased, small mudbrick temple" +Unknown,Menkaure,Queen,,False,True,False,False,False,Likely wife but Identity unknown,,,,Old Kingdom,4.0,Pyramid G 111-c,,Giza,,Not Cased,,Pyramid,21.2,29.17,29.17,unknown,"four step core, built with limestone, not cased" Shepseskaf,Shepseskaf,King,,False,False,False,False,False,,2472.0,2467.0,5.0,Old Kingdom,4.0,Mastaba of Shepseskaf,,South Saqqara,,"Limestone, Granite",,Mastaba,18.7,99.6,74.4,65,"domed roof, granite base, limestone casing, causeway built to 3m, mortuary temple (granite, expanded with mudbrick), move away from Giza - space reasons? Shepsekaf also responsible for finishing Menkaure's pyramid and probably starting to build tomb for Kentkaus (Verner 205)" Khentkaus I,Khentkaus I,Queen,Menkaure?,True,False,False,False,True,"Royal Mother (likely of Shepseskaf and Userkaf), diagreement over whether she ruled herself as regent or not (Verner 210)",,,,Old Kingdom,4.0,Pyramid of Khentkaus I,,Giza,E-W,"Limestone, Granite",,Pyramid,8.83-9.9,41.85,43.35,52,"black granite, red grainite, limestone pieces found - Verner's dimensions (base - 41.85 x 43.35 m, height - 8.83 - 9.9, upper step mastaba - length 37.3 x width 35.3 x height 8.31 m), limestone casing. Boat pit. Diagreement - truncated pyramid? dating?" Userkaf,Userkaf,King,,False,False,False,False,False,,2465.0,2458.0,7.0,Old Kingdom,5.0,Pyramid of Userkaf,,Saqqara,N-S,Limestone,,Pyramid,49,73.3,73.3,53,"cased with white limestone. new location of mortuary temple (southern side of pyramid), collossal statue of Userkaf in temple, Cult Pyramid - base 20.96, height 14, angle 59 degrees" @@ -26,31 +26,32 @@ Khentkaus II,Neferirkare,Queen,,True,True,True,False,False,"Wife of Neferirkare, Neferefre,Neferefre,King,,False,False,False,False,False,,2419.0,2416.0,3.0,Old Kingdom,5.0,Pyramid of Neferefre,,Abusir,E-W,Limestone,Unfinished,Pyramid,6.85,67.5,67.5,72,"pyramid unfinished became mastaba with gravel roof terrace, limestone casing blocks, Niuserre builds temple with mudbrick (Verner 247)" Niuserre,Niuserre,King,,False,False,False,False,False,,2416.0,2388.0,28.0,Old Kingdom,5.0,Pyramid of Niuserre,,Abusir,E-W,Limestone,,Pyramid,50.1,78.5,78.5,52,"white limestone casing. Niuserre finished pyramids of Neferirkare and Khentkawes, Neferere. There is a cult pyramid and mortuary temple, new temple innovations (Eckbau structures), red granite obelisk, and lion statue" Reputnebu?,Niuserre,Queen,,False,True,True,False,False,Wife of Niuserre,,,,Old Kingdom,5.0,Lepsius 24,,Abusir,N-S,Limestone,,Pyramid,24.72,31.1,31.1,57,"pyramid, mortuary temple and small cult pyramid (""earliest known instance of a cult pyramid in the pyramid complex of a queen"" (Verner 259), limestone casing" -Menkauhor?,Menkauhor,King,,False,False,False,False,False,,,,,Old Kingdom,5.0,Lepsius 29 / Headless Pyramid,,Saqqara,,Limestone,,Pyramid,,52,52,,"debate over owner of Pyramid, Merikare? Menkauhor? - Sullivan used estimated height of 32 m based on height of Khendjer pyramid, with a similar base size" +Menkauhor?,Menkauhor,King,,False,False,False,False,False,,,,,Old Kingdom,5.0,Lepsius 29 / Headless Pyramid,,Saqqara,,Limestone,,Pyramid,,52.0,52.0,?,"debate over owner of Pyramid, Merikare? Menkauhor? - Sullivan used estimated height of 32 m based on height of Khendjer pyramid, with a similar base size" Djedkare,Djedkare,King,,False,False,False,False,False,,2388.0,2356.0,32.0,Old Kingdom,5.0,Pyramid of Djedkare-Isesi,,South Saqqara,E-W,Limestone,,Pyramid,50,78.5,78.5,52,"white limestone casing, core material (small, irregular pieces of limestone rather than large blocks of local limestone), basalt paving replaced by alabaster (Verner 254)" Setibhor,Djedkare,Queen,,True,True,True,False,True,"Wife to Djedkare, Mother to Unas?, May have ruled as regent queen while her son was young",,,,Old Kingdom,5.0,Pyramid of Setibhor,,South Saqqara,,Limestone,,Pyramid,31,41.5,41.5,57,"Verner for dimensions, pyramid, cult pyramid, mortuary temple - temple unusual, different from past queens (Verner 270), ""The size, structure, and originality of the complex all indicate that Djedkare's consort Setibhor was someone of high social standing. According to Klaus Baer (1920-87), the demonstrable improvements and reworkings of some of the reliefs prove that the queen herself might have ruled for a time after the death of her husband Djedkare and before the coronation of (their son?)."" (Verner 270) Show ""growing role played by queens, and especially by the queen mothers, in the turbulent political situation of the times."" (Verner 270)" -Unas,Unas,King,,False,False,False,False,False,,2356.0,2323.0,33.0,Old Kingdom,5.0,Pyramid of Unas,Yes,Saqqara,E-W,Limestone,,Pyramid,43.23,57.6-57.7,57.6-57.7,56,"fine white limestone casing , red granite papyrus columns, ""Despite the fact that Unas's pyramid is one of the smallest built in the Old Kingdom, possibly because of the king's limited resources, it represents a milestone in the development of the royal tomb: on the walls of its underground chambers first appeared the inscriptions known as Pyramid Texts."" (Verner 272). pair of boat pits, core - lower quality limestone, casing - high quality limestone. increased amount of storage capacity in mortuary temple (Verner 276), small cult pyramid (base 11.5m, angle 63)," +Unas,Unas,King,,False,False,False,False,False,,2356.0,2323.0,33.0,Old Kingdom,5.0,Pyramid of Unas,Yes,Saqqara,E-W,Limestone,,Pyramid,43.23,57.7,57.7,56,"fine white limestone casing , red granite papyrus columns, ""Despite the fact that Unas's pyramid is one of the smallest built in the Old Kingdom, possibly because of the king's limited resources, it represents a milestone in the development of the royal tomb: on the walls of its underground chambers first appeared the inscriptions known as Pyramid Texts."" (Verner 272). pair of boat pits, core - lower quality limestone, casing - high quality limestone. increased amount of storage capacity in mortuary temple (Verner 276), small cult pyramid (base 11.5m, angle 63)," Teti,Teti,King,,False,False,False,False,False,,2323.0,2291.0,32.0,Old Kingdom,6.0,Pyramid of Teti,Yes,Saqqara,E-W,Limestone,,Pyramid,52.4,78.6,78.6,53,"enclosure walls made of limestone, satellite pyramid 16 m, Cult Pyramid - 15.6 heigh, 15.7 base, angle 63 (Verner 281), built of small blocks of limestone, fine limestone casing," -Sesheshet I,Teti,Queen,,True,False,False,False,False,Mother of Teti,,,,Old Kingdom,6.0,Pyramid of Sesheshet I,,Saqqara,,Limestone,,Pyramid,15,22,22,51,"built near mastabas of Unas's wives Nebet and Khenut, ""the angle of 51 would be more typical of the king's rather than the queen's pyramid."" (Verner 288)" -Khuit II,Teti,Queen,,False,True,True,False,False,Wife of Teti,,,,Old Kingdom,6.0,Pyramid of Khuit II,,Saqqara,,Limestone,,Pyramid,20,21,21,63,"core - small pieces of local limestone, fine white limestone casing, mortuary temple" -Iput I,Teti,Queen,,True,True,True,False,False,"Wife of Teti, Mother of Pepy I",,,,Old Kingdom,6.0,Pyramid of Iput I,,Saqqara,,Limestone,,Pyramid,21,19.42 -21,19.42 -21,62,"core of local limestone, cased with white limestone, originally built as mastaba then turned into Pyramid, likely during reign of Pepy I (Verner, 287) small chapel, no cult pyramid" +Sesheshet I,Teti,Queen,,True,False,False,False,False,Mother of Teti,,,,Old Kingdom,6.0,Pyramid of Sesheshet I,,Saqqara,,Limestone,,Pyramid,15,22.0,22.0,51,"built near mastabas of Unas's wives Nebet and Khenut, ""the angle of 51 would be more typical of the king's rather than the queen's pyramid."" (Verner 288)" +Khuit II,Teti,Queen,,False,True,True,False,False,Wife of Teti,,,,Old Kingdom,6.0,Pyramid of Khuit II,,Saqqara,,Limestone,,Pyramid,20,21.0,21.0,63,"core - small pieces of local limestone, fine white limestone casing, mortuary temple" +Iput I,Teti,Queen,,True,True,True,False,False,"Wife of Teti, Mother of Pepy I",,,,Old Kingdom,6.0,Pyramid of Iput I,,Saqqara,,Limestone,,Pyramid,21,21.0,21.0,62,"core of local limestone, cased with white limestone, originally built as mastaba then turned into Pyramid, likely during reign of Pepy I (Verner, 287) small chapel, no cult pyramid" Pepy I,Pepy I,King,,False,False,False,False,False,,2289.0,2255.0,34.0,Old Kingdom,6.0,Pyramid of Pepy I,Yes,North Saqqara,E-W,Limestone,,Pyramid,52.5,78.75,78.75,53,"cased with fine white limestone, ""constructed in the same way as others since Djedkare's pyramid, by using small pieces of limestone bound together with clay motar."" (Verner 289) mortuary temple similar to Teti, modification during reign of Merenre I (Verner 291) Cult Pyramid 15.75 m long. large number of Queen's Pyramids (9) ""seems to reflect the changing social conditions in the country at that time. The king very probably tried to stregnthen his weakened position through political marraiges with women from influential families from different parts of Egypt."" (Verner 292) Pyramids of the queens ""look similar"" (292)" Inenek Inti,Pepy I,Queen,,False,True,True,True,False,"Wife of Pepy I, Vizier",,,,Old Kingdom,6.0,Pyramid of Inenek Inti,,North Saqqara,,Limestone,,Pyramid,21,20.96,20.96,63,"built first, ""hereditary princess and vizier,"" three step core with small pieces of local limestone, fine white limestone casing, entrance chapel, mortuary temple, small cult pyramid (6.5 height, 128 base from Sullivan), offering tables ""attest to the worship of the queen long after her death"" (Verner 294)" Nebuwenet,Pepy I,Queen,,False,True,True,False,False,Wife of Pepy I,,,,Old Kingdom,6.0,Pyramid of Nebuwenet,,North Saqqara,,Limestone,,Pyramid,21,20.96,20.96,63,"three step core, limestone, chapel built of mudbrick, faced with limestone, mortuary temple - small, limestone" -Ankhnespepy I,Pepy I,Queen,non-royal,True,True,True,False,False,"Wife of Pepy I, Mother of Merenre",,,,Old Kingdom,6.0,Pyramid of Ankhnespepy I,,North Saqqara,,,,Pyramid?,,,,,unknown +Ankhnespepy I,Pepy I,Queen,non-royal,True,True,True,False,False,"Wife of Pepy I, Mother of Merenre",,,,Old Kingdom,6.0,Pyramid of Ankhnespepy I,,North Saqqara,,,,Pyramid?,,,,unknown,unknown Ankhnespepy II,Pepy I,Queen,non-royal,True,True,True,False,True,"Wife of Pepy I and Merenre, Mother and Queen Regent for Pepy II",,,,Old Kingdom,6.0,Pyramid of Ankhnespepy II,Yes,North Saqqara,,Limestone,,Pyramid,30,31.2,31.2,63,"largest pyramid for Pepy I's queens, walls of chamber decorated with Pyramid texts, limestone casing, mortuary temple, red granite obelisk - first occurance in complex of queen, offering tables" Unknown,Pepy I,Queen,,False,True,False,False,False,Unknown,,,,Old Kingdom,6.0,"The Pyramid ""de l'Ouest""",,North Saqqara,,Limestone,,Pyramid,20.8,20.8,20.8,63,"three step core of local limestone, fine white limestone casing, substructure and mortuary temple slightly different - location of burial chamber, and temple made of mudbrick with many small rooms," -Meretites II,Pepy I,Queen,Pepy I,False,True,True,True,False,"Daughter of Pepy I, Wife of Pepy II, Vizier",,,,Old Kingdom,6.0,Pyramid of Meretities II,,North Saqqara,,Limestone,,Pyramid,21,21,21,,"fragments of wooden box with pyramid text passages, mortuary temple cased with limestone" -Mehaa,Pepy I,Queen,,False,True,False,False,False,"Mother of Netjerykhethor (a non-ruling Royal) - ""the eldest king's son of his body""",,,,Old Kingdom,6.0,Pyramid of Mehaa,,North Saqqara,,Limestone,Unfinished,Pyramid,,21,21,,"dimensions unknown, but likely similar to Nebuwenet" -Behenu,Pepy I,Queen,,False,True,True,False,False,Wife of Pepy I,,,,Old Kingdom,6.0,Pyramid of Behenu,Yes,North Saqqara,,Limestone,,Pyramid,,26.2,26.2,,"dimensions from Verner - pyramid larger than Mehaa's (greater importance, gragments of Pyramid Texts mentioning her, mortuary temple" -Sebutet,Pepy I,Queen,,False,True,True,False,False,Unknown,,,,Old Kingdom,6.0,Pyramid of Sebutet?,,North Saqqara,,Unknown,,Pyramid?,,,,,dimensions unknown -Nedjeftet,Pepy I,Queen,,False,True,True,False,False,Wife of Pepy I,,,,Old Kingdom,6.0,Pyramid of Nedjeftet?,,North Saqqara,,Unknown,,Pyramid?,,,,,dimensions unknown +Meretites II,Pepy I,Queen,Pepy I,False,True,True,True,False,"Daughter of Pepy I, Wife of Pepy II, Vizier",,,,Old Kingdom,6.0,Pyramid of Meretities II,,North Saqqara,,Limestone,,Pyramid,21,21.0,21.0,,"fragments of wooden box with pyramid text passages, mortuary temple cased with limestone" +Mehaa,Pepy I,Queen,,False,True,False,False,False,"Mother of Netjerykhethor (a non-ruling Royal) - ""the eldest king's son of his body""",,,,Old Kingdom,6.0,Pyramid of Mehaa,,North Saqqara,,Limestone,Unfinished,Pyramid,,21.0,21.0,unknown,"dimensions unknown, but likely similar to Nebuwenet" +Behenu,Pepy I,Queen,,False,True,True,False,False,Wife of Pepy I,,,,Old Kingdom,6.0,Pyramid of Behenu,Yes,North Saqqara,,Limestone,,Pyramid,25,26.2,26.2,69,"dimensions from Verner - pyramid larger than Mehaa's (greater importance, gragments of Pyramid Texts mentioning her, mortuary temple" +Sebutet,Pepy I,Queen,,False,True,True,False,False,Unknown,,,,Old Kingdom,6.0,Pyramid of Sebutet?,,North Saqqara,,Unknown,,Pyramid?,,,,unknown,dimensions unknown +Nedjeftet,Pepy I,Queen,,False,True,True,False,False,Wife of Pepy I,,,,Old Kingdom,6.0,Pyramid of Nedjeftet?,,North Saqqara,,Unknown,,Pyramid?,,,,unknown,dimensions unknown Ankhnespepy III,Pepy I,Queen,Merenre,True,True,True,False,False,"Wife of Pepy II, Mother to Neferkare, Daughter of Merenre",,,,Old Kingdom,6.0,Pyramid of Ankhnespepy III,,North Saqqara,,Limestone,,Pyramid,15,15.72,15.72,63,"fine limestone casing, pyramid similar to Udjebten (wife of Pepy II), may have been built during same time, no entrance chapel, ""fragments of a wooden box inscribed with the Pyramid Texts were found in the chamber... shows that the Pyramid Texts could occur on movable objects... also attests to the democratization of religious ideas and burial customs"" (Verner 297), mortuary temple, offering hall, small cult pyramid (3.1 m long)" Merenre,Merenre,King,,False,False,False,False,False,,2255.0,2246.0,9.0,Old Kingdom,6.0,Pyramid of Merenre,Yes,South Saqqara,E-W,Limestone,,Pyramid,52.4,78.6,78.6,53,"cased with fine limestone, causeway 200m long, enclosure walls made of mudbrick, valuable materials (""red granite from Aswan, calcite alabaster from Hatnub, and dark grey-wacke from the quarries in Ibhat"" (Verner 300), pyramid texts" Pepy II,Pepy II,King,,False,False,False,False,False,,2246.0,2152.0,94.0,Old Kingdom,6.0,Pyramid of Pepy II,Yes,South Saqqara,E-W,Limestone,,Pyramid,52.1,78.6,78.6,53,"six step core built of small rough cut local limestone blocks bound with clay, fine white limestone casing, unusual band of limestone likely built after Pepy II's death, Pyramid texts, mortuary temple, small cult pyramid" -Neith,Pepy II,Queen,Merenre,True,True,True,False,False,"Wife of Pepy II, Mother of Merenre II, Sister of Merenre",,,,Old Kingdom,6.0,Pyramid of Neith,Yes,South Saqqara,,Limestone,,Pyramid,21.5,24,24,61,"satellite pyramid 5.25 m sq (Sullivan), mortuary temple, two limestone obelisks, three step core, same materials as king's pyramid, similar substructure to queens of Pepy I, sixteen wooden models of boats lying in shallow pit discovered" -Iput II,Pepy II,Queen,Pepy I?,False,True,True,False,False,Wife of Pepy II,,,,Old Kingdom,6.0,Pyramid of Iput II,Yes,South Saqqara,,Limestone,,Pyramid,16-17,22,22,55,"very similar to Queen Neith but smaller with poorer quality burial equipment, sarcophagus of Queen AnkhnesPepy III found in storeroom (consort of Pepy II and mother of Neferkare Neby who ruled in 8th Dynasty)" +Neith,Pepy II,Queen,Merenre,True,True,True,False,False,"Wife of Pepy II, Mother of Merenre II, Sister of Merenre",,,,Old Kingdom,6.0,Pyramid of Neith,Yes,South Saqqara,,Limestone,,Pyramid,21.5,24.0,24.0,61,"satellite pyramid 5.25 m sq (Sullivan), mortuary temple, two limestone obelisks, three step core, same materials as king's pyramid, similar substructure to queens of Pepy I, sixteen wooden models of boats lying in shallow pit discovered" +Iput II,Pepy II,Queen,Pepy I?,False,True,True,False,False,Wife of Pepy II,,,,Old Kingdom,6.0,Pyramid of Iput II,Yes,South Saqqara,,Limestone,,Pyramid,16-17,22.0,22.0,55,"very similar to Queen Neith but smaller with poorer quality burial equipment, sarcophagus of Queen AnkhnesPepy III found in storeroom (consort of Pepy II and mother of Neferkare Neby who ruled in 8th Dynasty)" Wedjebten,Pepy II,Queen,,False,True,True,False,False,Wife of Pepy II,,,,Old Kingdom,6.0,Pyramid of Wedjebten,Yes,South Saqqara,,Limestone,,Pyramid,25.5,23.9,23.9,65,"pyramidion plated with finest gold, pyramid texts in burial chamber, simply decorated mortuary temple, offering table" +"Below are Kings who ruled between Pepy II and Ibi (without known monuments), their length of reign is uncertain",,,,False,False,False,False,False,,,,,,,,,,,,,,,,,, Merenre II,unknown,King,,False,False,False,False,False,,,,1.0833333333333333,,6.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, Netjerkare Siptah,unknown,King,,False,False,False,False,False,,,,,,6.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, Menkare,unknown,King,,False,False,False,False,False,,,,,,6.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, @@ -65,7 +66,8 @@ Neferkare Tereru,unknown,King,,False,False,False,False,False,,,,,,7.0,,,Unknown, Neferkahor,unknown,King,,False,False,False,False,False,,,,,,7.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, Neferkare Pepy-Seneb,unknown,King,,False,False,False,False,False,,,,,,7.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, Neferkamin Anu,unknown,King,,False,False,False,False,False,,,,,,7.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, -Ibi,Ibi,King,,False,False,False,False,False,,,,2.083333333333333,Old Kingdom,8.0,Pyramid of Ibi,Yes,South Saqqara,,Limestone,Unfinished?,Pyramid,30,31.5,31.5,,"casing not put in place, chapel made of mudbrick, core made of ""small stones,"" (Lehner); Sullivan estimates 21m high, but one could argue that it was based on Ankhesenpepy II's pyramid (30m)." +Ibi,Ibi,King,,False,False,False,False,False,,,,2.083333333333333,Old Kingdom,8.0,Pyramid of Ibi,Yes,South Saqqara,,Limestone,Unfinished?,Pyramid,30,31.5,31.5,unknown,"casing not put in place, chapel made of mudbrick, core made of ""small stones,"" (Lehner); Sullivan estimates 21m high, but one could argue that it was based on Ankhesenpepy II's pyramid (30m)." +"Below are Kings who ruled after Ibi (without certainty on their monuments), their length of reign is uncertain",,,,False,False,False,False,False,,,,,,,,,,,,,,,,,, Neferkaure,unknown,King,,False,False,False,False,False,,,,4.166666666666667,,8.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, Neferkauhor?,pyramid?,King,,False,False,False,False,False,,,,2.083333333333333,,8.0,Pyramid of Neferkauhor?,,Unknown,,Unknown,Unknown,Unknown,,,,,"no archaeological evidence of a pyramid, but inscriptional evidence (overseer of pyramid town), cf. Papazian, 420" Neferirkare,unknown,King,,False,False,False,False,False,,,,1.5,,8.0,,,Unknown,,Unknown,Unknown,Unknown,,,,, diff --git a/assets/raw_pyramid_data.csv b/assets/raw_pyramid_data.csv index 3418485..df00367 100644 --- a/assets/raw_pyramid_data.csv +++ b/assets/raw_pyramid_data.csv @@ -1,10 +1,10 @@ -Pyramid Owner,Pyramid Complex,Gender,Daughter of,Royal Mother Title ,Likely wife,Wife Title,Vizier,Regent,Relationship to King,Start of Reign,End of Reign,Length of Reign (Years),Period,Dynasty,Title,Pyramid Texts,Site/Location,Orientation,Casing,State of Completion,Superstructure Type,Height (m),Length (m),Width (m) ,Angle (degrees),Notes +Pyramid Owner,Pyramid Complex,Royal Status,Daughter of,Royal Mother Title ,Likely wife,Wife Title,Vizier,Regent,Relationship to King,Start of Reign,End of Reign,Length of Reign (Years),Period,Dynasty,Title,Pyramid Texts,Site/Location,Orientation,Casing,State of Completion,Superstructure Type,Height (m),Length (m),Width (m) ,Angle (degrees),Notes Djoser,Djoser,King,,,,,,,,2630,2611,19,Old Kingdom,3,Step Pyramid of Djoser ,,Saqqara,N-S,Limestone,,Pyramid,59.9,120,108,74,"15 gates, white limestone casing" Sekhemkhet,Sekhemkhet,King ,,,,,,,,2611,2603,8,Old Kingdom,3,Unfinished Step Pyramid of Sekhemhet,,Saqqara,N-S,Limestone,Unfinished,Pyramid,70 (planned height),120,120,71-75,"niched facade, unfinished, left with rough exterior no smoothed limestone, (Verner mentions limestone casing) , ""probably intended to rise about 70 m (230 ft), in seven steps - higher than Djoser's."" (Lehner, 94)" Nebka?,Nebka?,King,,,,,,,,2649,2630,19,Old Kingdom,3,Unfinished Pyramid,,Zawiyet el-Aryan,E-W,Unknown,Unfinished,Pyramid,unfinished,200,200,unknown,debate over whether this is Pyramid of Nebka Khaba,Khaba,King,,,,,,,,2603,2599,4,Old Kingdom,3,Layer Pyramid,,Zawiyet el-Aryan,E-W,Unknown,Unfinished,Pyramid,42 (planned height),83.8,83.8,unknown,began as step pyramid Sneferu,Sneferu 1,King,,,,,,,,2599,2575,24,Old Kingdom,4,Meidum Pyramid,,Meidum,E-W,Limestone,Unfinished,Pyramid,94.5,144.32,144.32,52,"limestone casing, causeway 200m, Cult Pyramid - 26 m, 75 degree angle (Verner)" -Sneferu,Sneferu 2,King,,,,,,,,2575,2551,24,Old Kingdom,4,Bent Pyramid,,Dahshur,E-W,Limestone,,Pyramid,105.07 (total height),188.6,188.6,"lower angle 54, upper angle 43","limestone casing, Cult Pyramid - 52 m side, 44 degree angle, 26 m height" +Sneferu,Sneferu 2,King,,,,,,,,2575,2551,24,Old Kingdom,4,Bent Pyramid,,Dahshur,E-W,Limestone,,Pyramid,105.07,188.6,188.6,"lower angle 54, upper angle 43","limestone casing, Cult Pyramid - 52 m side, 44 degree angle, 26 m height" Sneferu,Sneferu 3,King,,,,,,,,,,,Old Kingdom,4,Red Pyramid,,Dahshur,E-W,Limestone,,Pyramid,109.54,219.08,219.08,43,"red granite false door, no Cult Pyramid, causeway not completed" ,,,,,,,,,,,,,,,,,,,,,,,,,, Khufu,Khufu,King,,,,,,,,2551,2528,23,Old Kingdom,4,Pyramid of Khufu,,Giza,,Limestone,,Pyramid,146.59,230.33,230.33,51,"Cult Pyramid - 21.75m (base), 51 degree angle, 13.80 m height, limestone core and casing, likely moves to Giza for the space to build a large pyramid where there was a supply of limestone (Verner) extensive building - king chamber, queen chamber, mortuary and valley temple, boat pits" @@ -43,12 +43,12 @@ Menkauhor?,Menkauhor,King,,,,,,,,,,,Old Kingdom,5,Lepsius 29 / Headless Pyramid Djedkare,Djedkare,King,,,,,,,,2388,2356,32,Old Kingdom,5,Pyramid of Djedkare-Isesi,,South Saqqara,E-W,Limestone,,Pyramid,50,78.5,78.5,52,"white limestone casing, core material (small, irregular pieces of limestone rather than large blocks of local limestone), basalt paving replaced by alabaster (Verner 254)" Setibhor,Djedkare,Queen ,,Yes?,Yes,Yes,,Yes?,"Wife to Djedkare, Mother to Unas?, May have ruled as regent queen while her son was young",,,,Old Kingdom,5,Pyramid of Setibhor,,South Saqqara,,Limestone,,Pyramid,31 (estimate),41.5,41.5,57,"Verner for dimensions, pyramid, cult pyramid, mortuary temple - temple unusual, different from past queens (Verner 270), ""The size, structure, and originality of the complex all indicate that Djedkare's consort Setibhor was someone of high social standing. According to Klaus Baer (1920-87), the demonstrable improvements and reworkings of some of the reliefs prove that the queen herself might have ruled for a time after the death of her husband Djedkare and before the coronation of (their son?)."" (Verner 270) Show ""growing role played by queens, and especially by the queen mothers, in the turbulent political situation of the times."" (Verner 270)" ,,,,,,,,,,,,,,,,,,,,,,,,,, -Unas,Unas,King ,,,,,,,,2356,2323,33,Old Kingdom,5,Pyramid of Unas ,Yes,Saqqara,E-W,Limestone,,Pyramid,43.23,57.6-57.7,57.6-57.7,56,"fine white limestone casing , red granite papyrus columns, ""Despite the fact that Unas's pyramid is one of the smallest built in the Old Kingdom, possibly because of the king's limited resources, it represents a milestone in the development of the royal tomb: on the walls of its underground chambers first appeared the inscriptions known as Pyramid Texts."" (Verner 272). pair of boat pits, core - lower quality limestone, casing - high quality limestone. increased amount of storage capacity in mortuary temple (Verner 276), small cult pyramid (base 11.5m, angle 63), " +Unas,Unas,King ,,,,,,,,2356,2323,33,Old Kingdom,5,Pyramid of Unas ,Yes,Saqqara,E-W,Limestone,,Pyramid,43.23,57.7,57.7,56,"fine white limestone casing , red granite papyrus columns, ""Despite the fact that Unas's pyramid is one of the smallest built in the Old Kingdom, possibly because of the king's limited resources, it represents a milestone in the development of the royal tomb: on the walls of its underground chambers first appeared the inscriptions known as Pyramid Texts."" (Verner 272). pair of boat pits, core - lower quality limestone, casing - high quality limestone. increased amount of storage capacity in mortuary temple (Verner 276), small cult pyramid (base 11.5m, angle 63), " ,,,,,,,,,,,,,,,,,,,,,,,,,, Teti,Teti,King,,,,,,,,2323,2291,32,Old Kingdom,6,Pyramid of Teti,Yes,Saqqara,E-W,Limestone ,,Pyramid,52.4,78.6,78.6,53,"enclosure walls made of limestone, satellite pyramid 16 m, Cult Pyramid - 15.6 heigh, 15.7 base, angle 63 (Verner 281), built of small blocks of limestone, fine limestone casing, " Sesheshet I,Teti,Queen ,,Yes,unknown,,,,Mother of Teti,,,,Old Kingdom,6,Pyramid of Sesheshet I,,Saqqara,,Limestone ,,Pyramid,15 (estimate),22,22,51,"built near mastabas of Unas's wives Nebet and Khenut, ""the angle of 51 would be more typical of the king's rather than the queen's pyramid."" (Verner 288)" Khuit II,Teti,Queen ,,,Yes,Yes,,,Wife of Teti,,,,Old Kingdom,6,Pyramid of Khuit II,,Saqqara,,Limestone ,,Pyramid,20,21,21,63,"core - small pieces of local limestone, fine white limestone casing, mortuary temple" -Iput I,Teti,Queen ,,Yes,Yes,Yes,,,"Wife of Teti, Mother of Pepy I",,,,Old Kingdom,6,Pyramid of Iput I,,Saqqara,,Limestone ,,Pyramid,21,19.42 -21,19.42 -21,62,"core of local limestone, cased with white limestone, originally built as mastaba then turned into Pyramid, likely during reign of Pepy I (Verner, 287) small chapel, no cult pyramid " +Iput I,Teti,Queen ,,Yes,Yes,Yes,,,"Wife of Teti, Mother of Pepy I",,,,Old Kingdom,6,Pyramid of Iput I,,Saqqara,,Limestone ,,Pyramid,21,21,21,62,"core of local limestone, cased with white limestone, originally built as mastaba then turned into Pyramid, likely during reign of Pepy I (Verner, 287) small chapel, no cult pyramid " ,,,,,,,,,,,,,,,,,,,,,,,,,, Pepy I,Pepy I,King,,,,,,,,2289,2255,34,Old Kingdom,6,Pyramid of Pepy I,Yes,North Saqqara,E-W,Limestone,,Pyramid,52.5,78.75,78.75,53,"cased with fine white limestone, ""constructed in the same way as others since Djedkare's pyramid, by using small pieces of limestone bound together with clay motar."" (Verner 289) mortuary temple similar to Teti, modification during reign of Merenre I (Verner 291) Cult Pyramid 15.75 m long. large number of Queen's Pyramids (9) ""seems to reflect the changing social conditions in the country at that time. The king very probably tried to stregnthen his weakened position through political marraiges with women from influential families from different parts of Egypt."" (Verner 292) Pyramids of the queens ""look similar"" (292)" Inenek Inti,Pepy I,Queen ,,,Yes,Yes,Yes,,"Wife of Pepy I, Vizier",,,,Old Kingdom,6,Pyramid of Inenek Inti,,North Saqqara,,Limestone,,Pyramid,21,20.96,20.96,63,"built first, ""hereditary princess and vizier,"" three step core with small pieces of local limestone, fine white limestone casing, entrance chapel, mortuary temple, small cult pyramid (6.5 height, 128 base from Sullivan), offering tables ""attest to the worship of the queen long after her death"" (Verner 294)" @@ -58,7 +58,7 @@ Ankhnespepy II,Pepy I,Queen ,non-royal,Yes,Yes,Yes,,Yes,"Wife of Pepy I and Mere Unknown,Pepy I,Queen ,,,Yes,,,,Unknown,,,,Old Kingdom,6,"The Pyramid ""de l'Ouest"" ",,North Saqqara,,Limestone,,Pyramid,20.8,20.8,20.8,63,"three step core of local limestone, fine white limestone casing, substructure and mortuary temple slightly different - location of burial chamber, and temple made of mudbrick with many small rooms," Meretites II,Pepy I,Queen ,Pepy I,,Yes,Yes,Yes,,"Daughter of Pepy I, Wife of Pepy II, Vizier",,,,Old Kingdom,6,Pyramid of Meretities II,,North Saqqara,,Limestone,,Pyramid,21,21,21,,"fragments of wooden box with pyramid text passages, mortuary temple cased with limestone" Mehaa,Pepy I,Queen ,,,Yes,,,,"Mother of Netjerykhethor (a non-ruling Royal) - ""the eldest king's son of his body""",,,,Old Kingdom,6,Pyramid of Mehaa,,North Saqqara,,Limestone,Unfinished,Pyramid,unknown,21,21,unknown,"dimensions unknown, but likely similar to Nebuwenet" -Behenu,Pepy I,Queen ,,,Yes,Yes,,,Wife of Pepy I,,,,Old Kingdom,6,Pyramid of Behenu,Yes,North Saqqara,,Limestone,,Pyramid,unknown,26.2,26.2,,"dimensions from Verner - pyramid larger than Mehaa's (greater importance, gragments of Pyramid Texts mentioning her, mortuary temple" +Behenu,Pepy I,Queen ,,,Yes,Yes,,,Wife of Pepy I,,,,Old Kingdom,6,Pyramid of Behenu,Yes,North Saqqara,,Limestone,,Pyramid,25,26.2,26.2,69,"dimensions from Verner - pyramid larger than Mehaa's (greater importance, gragments of Pyramid Texts mentioning her, mortuary temple" Sebutet,Pepy I,Queen ,,,Yes,Yes,,,Unknown,,,,Old Kingdom,6,Pyramid of Sebutet? ,,North Saqqara,,Unknown,,Pyramid?,unknown,unknown,unknown,unknown,dimensions unknown Nedjeftet,Pepy I,Queen ,,,Yes,Yes,,,Wife of Pepy I,,,,Old Kingdom,6,Pyramid of Nedjeftet?,,North Saqqara,,Unknown,,Pyramid?,unknown,unknown,unknown,unknown,dimensions unknown Ankhnespepy III,Pepy I,Queen ,Merenre,Yes,Yes,Yes,,,"Wife of Pepy II, Mother to Neferkare, Daughter of Merenre",,,,Old Kingdom,6,Pyramid of Ankhnespepy III,,North Saqqara,,Limestone,,Pyramid,15,15.72,15.72,63,"fine limestone casing, pyramid similar to Udjebten (wife of Pepy II), may have been built during same time, no entrance chapel, ""fragments of a wooden box inscribed with the Pyramid Texts were found in the chamber... shows that the Pyramid Texts could occur on movable objects... also attests to the democratization of religious ideas and burial customs"" (Verner 297), mortuary temple, offering hall, small cult pyramid (3.1 m long)" @@ -70,6 +70,7 @@ Neith,Pepy II,Queen,Merenre,Yes,Yes,Yes,,,"Wife of Pepy II, Mother of Merenre II Iput II,Pepy II,Queen,Pepy I?,,Yes,Yes,,,Wife of Pepy II,,,,Old Kingdom,6,Pyramid of Iput II,Yes,South Saqqara,,Limestone,,Pyramid,16-17,22,22,55,"very similar to Queen Neith but smaller with poorer quality burial equipment, sarcophagus of Queen AnkhnesPepy III found in storeroom (consort of Pepy II and mother of Neferkare Neby who ruled in 8th Dynasty)" Wedjebten,Pepy II,Queen,,,Yes,Yes,,,Wife of Pepy II,,,,Old Kingdom,6,Pyramid of Wedjebten,Yes,South Saqqara,,Limestone,,Pyramid,25.5,23.9,23.9,65,"pyramidion plated with finest gold, pyramid texts in burial chamber, simply decorated mortuary temple, offering table" ,,,,,,,,,,,,,,,,,,,,,,,,,, +"Below are Kings who ruled between Pepy II and Ibi (without known monuments), their length of reign is uncertain",,,,,,,,,,,,,,,,,,,,,,,,,, Merenre II,unknown,King,,,,,,,,,,"1, 1",,6,,,Unknown,,Unknown,Unknown,Unknown,,,,, Netjerkare Siptah,unknown,King,,,,,,,,,,unknown,,6,,,Unknown,,Unknown,Unknown,Unknown,,,,, Menkare,unknown,King,,,,,,,,,,less than a year,,6,,,Unknown,,Unknown,Unknown,Unknown,,,,, @@ -86,6 +87,8 @@ Neferkare Pepy-Seneb,unknown,King,,,,,,,,,,unknown,,7,,,Unknown,,Unknown,Unknown Neferkamin Anu,unknown,King,,,,,,,,,,unknown,,7,,,Unknown,,Unknown,Unknown,Unknown,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,, Ibi,Ibi,King,,,,,,,,,,"2,1",Old Kingdom,8,Pyramid of Ibi ,Yes,South Saqqara,,Limestone,Unfinished?,Pyramid,30?,31.5,31.5,unknown,"casing not put in place, chapel made of mudbrick, core made of ""small stones,"" (Lehner); Sullivan estimates 21m high, but one could argue that it was based on Ankhesenpepy II's pyramid (30m). " +,,,,,,,,,,,,,,,,,,,,,,,,,, +"Below are Kings who ruled after Ibi (without certainty on their monuments), their length of reign is uncertain",,,,,,,,,,,,,,,,,,,,,,,,,, Neferkaure,unknown,King,,,,,,,,,,"4,2",,8,,,Unknown,,Unknown,Unknown,Unknown,,,,, Neferkauhor?,pyramid?,King,,,,,,,,,,"2,1",,8,Pyramid of Neferkauhor?,,Unknown,,Unknown,Unknown,Unknown,,,,,"no archaeological evidence of a pyramid, but inscriptional evidence (overseer of pyramid town), cf. Papazian, 420" Neferirkare,unknown,King,,,,,,,,,,"1,6",,8,,,Unknown,,Unknown,Unknown,Unknown,,,,, diff --git a/src/cleanup/old_kingdom_pyramid_commands.csv b/src/cleanup/old_kingdom_pyramid_commands.csv new file mode 100644 index 0000000..2ff722a --- /dev/null +++ b/src/cleanup/old_kingdom_pyramid_commands.csv @@ -0,0 +1,5 @@ +removews +tobool,royal_mother_title,likely_wife,wife_title,vizier,regent +yearstof,length_of_reign +normnum,height,length,width +dropblank,pyramid_owner diff --git a/tests/test_commands.csv b/tests/test_commands.csv deleted file mode 100644 index 8a907dc..0000000 --- a/tests/test_commands.csv +++ /dev/null @@ -1,2 +0,0 @@ -normcols,Pyramid Owner,Pyramid Complex -removews,Gender From fe835da1ad470e056f6f6400325dbaa4955a5e67 Mon Sep 17 00:00:00 2001 From: Jose Harvey <55963487+pneumatick@users.noreply.github.com> Date: Fri, 5 Jul 2024 13:10:51 -0400 Subject: [PATCH 3/3] remove unnecessary file.close() line Co-authored-by: Carlos Paniagua --- src/cleanup/cleanup_script.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/cleanup/cleanup_script.py b/src/cleanup/cleanup_script.py index d919efa..08ff846 100644 --- a/src/cleanup/cleanup_script.py +++ b/src/cleanup/cleanup_script.py @@ -196,7 +196,6 @@ def commands_from_file(args): if getattr(args, command, None) == None: setattr(args, command, columns) - file.close() return args