From ddec47964c863927a5c3c9ac405b7947ca6d240a Mon Sep 17 00:00:00 2001 From: davidkong0987 <41882241+davidkong0987@users.noreply.github.com> Date: Wed, 9 Jan 2019 10:05:51 -0500 Subject: [PATCH 1/4] Update advanced.rst --- docs/user/advanced.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index e7b4ab7..a2eb2ef 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -224,6 +224,8 @@ Table areas that you want Camelot to analyze can be passed as a list of comma-se .. csv-table:: :file: ../_static/csv/table_areas.csv +Table areas accepts strings of the form x1,y1,x2,y2 where (x1, y1) -> left-top and (x2, y2) -> right-bottom in PDF coordinate space. In PDF coordinate space, the bottom left corner of the page has coordinates (0, 0). + Specify table regions --------------------- From 88a6d0b76152fe6eb170788ad982b28a48351a26 Mon Sep 17 00:00:00 2001 From: davidkong0987 <41882241+davidkong0987@users.noreply.github.com> Date: Thu, 10 Jan 2019 00:48:34 -0500 Subject: [PATCH 2/4] Update advanced.rst added .. note:: in front --- docs/user/advanced.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index a2eb2ef..2af8e44 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -208,7 +208,7 @@ Specify table areas In cases such as `these <../_static/pdf/table_areas.pdf>`__, it can be useful to specify exact table boundaries. You can plot the text on this page and note the top left and bottom right coordinates of the table. -Table areas that you want Camelot to analyze can be passed as a list of comma-separated strings to :meth:`read_pdf() `, using the ``table_areas`` keyword argument. +.. note:: Table areas that you want Camelot to analyze can be passed as a list of comma-separated strings to :meth:`read_pdf() `, using the ``table_areas`` keyword argument. :: From 24e58d07598a2563d35afa46c0184be0d4f29f32 Mon Sep 17 00:00:00 2001 From: davidkong0987 <41882241+davidkong0987@users.noreply.github.com> Date: Thu, 10 Jan 2019 00:49:42 -0500 Subject: [PATCH 3/4] Update advanced.rst added .. note:: in front --- docs/user/advanced.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index 2af8e44..00d65ab 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -208,7 +208,7 @@ Specify table areas In cases such as `these <../_static/pdf/table_areas.pdf>`__, it can be useful to specify exact table boundaries. You can plot the text on this page and note the top left and bottom right coordinates of the table. -.. note:: Table areas that you want Camelot to analyze can be passed as a list of comma-separated strings to :meth:`read_pdf() `, using the ``table_areas`` keyword argument. +Table areas that you want Camelot to analyze can be passed as a list of comma-separated strings to :meth:`read_pdf() `, using the ``table_areas`` keyword argument. :: @@ -224,7 +224,7 @@ In cases such as `these <../_static/pdf/table_areas.pdf>`__, it can be useful to .. csv-table:: :file: ../_static/csv/table_areas.csv -Table areas accepts strings of the form x1,y1,x2,y2 where (x1, y1) -> left-top and (x2, y2) -> right-bottom in PDF coordinate space. In PDF coordinate space, the bottom left corner of the page has coordinates (0, 0). +.. note:: Table areas accepts strings of the form x1,y1,x2,y2 where (x1, y1) -> left-top and (x2, y2) -> right-bottom in PDF coordinate space. In PDF coordinate space, the bottom left corner of the page has coordinates (0, 0). Specify table regions --------------------- From 8c116080786d103275bb21e8e049c02a3189fba3 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Sun, 26 May 2019 16:44:26 +0530 Subject: [PATCH 4/4] Update advanced.rst --- docs/user/advanced.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index 00d65ab..28204f7 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -224,7 +224,7 @@ Table areas that you want Camelot to analyze can be passed as a list of comma-se .. csv-table:: :file: ../_static/csv/table_areas.csv -.. note:: Table areas accepts strings of the form x1,y1,x2,y2 where (x1, y1) -> left-top and (x2, y2) -> right-bottom in PDF coordinate space. In PDF coordinate space, the bottom left corner of the page has coordinates (0, 0). +.. note:: ``table_areas`` accepts strings of the form x1,y1,x2,y2 where (x1, y1) -> top-left and (x2, y2) -> bottom-right in PDF coordinate space. In PDF coordinate space, the bottom-left corner of the page is the origin, with coordinates (0, 0). Specify table regions ---------------------