MySql Polygon Spatial Relations via Image Map Tutorial

MySql Polygon Spatial Relations  via Image Map Tutorial

MySql Polygon Spatial Relations via Image Map Tutorial

It’s “tomorrow” as per …

Continuing the theme of PHP using MySql databases and dealing with Spatial functionality of MySql Stored Procedures Geometry Tutorial, today we establish some PHP to add into a MySql database table as POLYGON data type data, the HTML area coords attribute. Pourquoi? You’ll see more on this tomorrow.

… of yesterday’s MySql Polygon Insert via Image Map Tutorial, and today, we wanted to show you some really great MySql Spatial Relation Functions That Use Object Shapes. Think polygons and thinking geometry and thinking GIS you would want SQL functionality we show today as per …

  • tell whether one polygon CROSSES another polygon
  • tell whether one polygon is DISJOINT relative to another polygon
  • tell whether one polygon EQUALS another polygon in a spatial sense
  • tell whether one polygon INTERSECTS another polygon
  • tell whether one polygon OVERLAPS another polygon
  • tell whether one polygon TOUCHES another polygon
  • tell whether one polygon is WITHIN another polygon

Here is some downloadable supervisory PHP programming source code which gathers the MySql SQL requests made for POLYGON data type INSERT MySql SQL statements and can be renamed to the changed map_area_polygon_mysql.php for your perusal, and which we use incorporated with our local MAMP Apache/PHP/MySql web server, or via this live run link.

Now with the supervised PHP programming source code which gathers the MySql SQL requests made for POLYGON data type INSERT MySql SQL statements and can be renamed to the changed ourmysqlstoredprocedure.php for your perusal.

You can also see this play out at WordPress 4.1.1’s MySql Polygon Insert via Image Map Tutorial.


Previous relevant MySql Polygon Insert via Image Map Tutorial is shown below.

MySql Polygon Insert via Image Map Tutorial

MySql Polygon Insert via Image Map Tutorial

Continuing the theme of PHP using MySql databases and dealing with Spatial functionality of MySql Stored Procedures Geometry Tutorial, today we establish some PHP to add into a MySql database table as POLYGON data type data, the HTML area coords attribute. Pourquoi? You’ll see more on this tomorrow. Let’s today, just get to insert records, and that looks like, in MySql SQL …

Table Creation

DROP TABLE IF EXISTS POLYGONS;
CREATE TABLE POLYGONS (
polyid INT NOT NULL AUTO_INCREMENT,
mapid VARCHAR(20) NOT NULL,
onepolygon POLYGON NOT NULL,
PRIMARY KEY (polyid));

Insert Statement Examples

INSERT INTO POLYGONS (`mapid`,`onepolygon`) values (‘sh80879′,ST_POLYGONFROMTEXT(‘POLYGON ((190 653, 193 645, 192 641, 191 635, 193 629, 195 623, 192 622, 194 610, 192 606, 186 607, 183 597, 185 593, 181 590, 178 586, 176 580, 172 576, 181 576, 189 574, 198 570, 204 565, 198 562, 202 559, 202 551, 207 550, 214 553, 219 553, 226 546, 232 544, 239 543, 241 539, 248 539, 255 534, 259 535, 259 545, 259 551, 255 558, 250 567, 246 575, 249 580, 249 590, 250 598, 250 604, 242 604, 234 610, 232 619, 229 627, 221 631, 214 637, 211 646, 204 651, 197 656, 191 655, 190 653))’));
INSERT INTO POLYGONS (`mapid`,`onepolygon`) values (‘sh80879′,ST_POLYGONFROMTEXT(‘POLYGON ((190 651, 193 644, 190 638, 193 633, 195 627, 196 622, 191 621, 194 617, 192 611, 193 607, 188 607, 185 606, 184 604, 184 599, 185 594, 181 592, 183 587, 181 585, 176 585, 177 582, 173 580, 172 576, 174 575, 170 569, 164 570, 157 564, 153 556, 149 554, 141 549, 148 564, 152 569, 158 580, 165 590, 167 600, 173 610, 173 619, 175 622, 171 622, 175 632, 180 638, 184 644, 191 652, 190 651))’));

… featuring MySql’s ST_POLYGONFROMTEXT function usage to INSERT POLYGON data into a MySql database table.

Here is some downloadable (so far only) supervisory PHP programming source code which gathers the MySql SQL requests made for POLYGON data type INSERT MySql SQL statements and can be renamed to map_area_polygon_mysql.php for your initial perusal, and which we use incorporated with our local MAMP Apache/PHP/MySql web server, or via this live run link.


Previous relevant MySql Stored Procedures Geometry Tutorial is shown below.

MySql Stored Procedures Geometry Tutorial

MySql Stored Procedures Geometry Tutorial

We’re back from rjmprogramming.com.au domain thoughts at MySql Stored Procedures User Grant Tutorial back to thinking more about where MySql is at these days regarding General Geometry Property Functions.

This series of functions applicable with MySql SQL DML or “Stored Procedures” (given you have a recent enough version of MySql) may be a more efficient approach for an application you write, perhaps avoiding “double handling” … maybe even “triple handling” in the hierarchy…

  • MySql called from PHP (server side code) as a SELECT statement query result set … down to …
  • PHP (calling the MySql) could achieve this too … down to …
  • Javascript (at the client side) could, perhaps, achieve this too

… depending on what, geometry wise, you want to achieve. On our MAMP Apache/PHP/MySql web server incarnation of our MySql series, as you can see with our tutorial picture today using …

  • PHP 7 … and …
  • mysqli_connect() via 5.7.23 – MySQL

… we show …

  • ST_Envelope

    Returns the minimum bounding rectangle (MBR) for the geometry value

    … via pretty obsessive application of MySql CONCAT function (as well as below)

  • ST_Length

    Returns a double-precision number indicating the length of the LineString or MultiLineString value

Generally speaking, we totally recommend finding out more here, because the closer you keep the data to the functionality, the faster will be the applications you write. You’re here because you have decided on MySql as the data source (database) engine. Being as you’ve gone to all that organizational trouble, it would be a shame to not use MySql in a savvy way interfacing to what your data represents, as soon as integrated as possible.

And here is some downloadable supervisory PHP programming source code which gathers the MySql SQL requests made and can be renamed to the changed ourmysql_storedprocedure.php as required.


Previous relevant MySql Stored Procedures User Grant Tutorial is shown below.

MySql Stored Procedures User Grant Tutorial

MySql Stored Procedures User Grant Tutorial

Yesterday’s MySql Stored Procedures Spatial Tutorial was fully functional for what we wanted to cover on our local MAMP Apache/PHP/MySql web server featuring …

  • PHP 7 … and …
  • mysqli_connect() via 5.7.23 – MySQL

… but to offer any version of it “live” on rjmprogramming.com.au domain (which we generally try to do for your “reality of purpose” here at this blog) we came across many issues …

  • PHP 5 … and …
  • mysqli_connect() (ie. now the same, ditching the old mysql_connect() ideas) via 5.1.70-cll – MySQL … as well as …
  • security concerns

Hence yesterday’s trepidation, huh?! But what makes databases like MySql, especially with its brilliant phpMyAdmin GUI interface, that “step up” from other data storage methodologies such as HTTP Cookies or Local Storage or Flat Files is the concept of a “user” … yoo, hoo!

The concept of a “user” with “databases” can then team up with concepts such as …

  • privileges
  • role

… in order to add so much more nuance and organization regarding who handles what computing task. Think blogs, for example, and you can have …

  • administration users (you’ll hear “superuser” references) who can achieve all of the functionalities below, and more … versus …
  • users who just read and never intend to write or comment
  • users who want to write blog postings but need administrator help to delete them
  • users who want to comment

… and various other “roles”. “Privileges” can help the “database” decide on what is allowed by a “user” to happen on the “database”.

Very good and secure “database” brands will start very restrictively, maybe on any database starting out with the one administrator “user”. To nuance from that position we need the “MySql” SQL GRANT command (for allowing, and REVOKE is for the other way around), and we’d like to thank and direct you to the excellent MySql GRANT advice as per …

Grant Permissions to MySQL User
The basic syntax for granting permissions is as follows:

GRANT permission ON database.table TO ‘user’@’localhost';

Here is a short list of commonly used permissions :

ALL โ€“ Allow complete access to a specific database. If a database is not specified, then allow complete access to the entirety of MySQL.
CREATE โ€“ Allow a user to create databases and tables.
DELETE โ€“ Allow a user to delete rows from a table.
DROP โ€“ Allow a user to drop databases and tables.
EXECUTE โ€“ Allow a user to execute stored routines.
GRANT OPTION โ€“ Allow a user to grant or remove another userโ€™s privileges.
INSERT โ€“ Allow a user to insert rows from a table.
SELECT โ€“ Allow a user to select data from a database.
SHOW DATABASES- Allow a user to view a list of all databases.
UPDATE โ€“ Allow a user to update rows in a table.

Coming back to our MySql “Stored Procedure” thoughts, it’s that “EXECUTE” GRANT above that is needed, and yet on our rjmprogramming.com.au domain web server, that idea was restricted. Hence, behind the scenes we detect this with our PHP, and that we MySql GRANT all the DML SQL (the day to day database populating and updating functionalities) of INSERT and UPDATE and SELECT and DELETE, and break the “Stored Procedures” up into (less cute) sets of DML SQL to achieve the same ends. However, we still present “Stored Procedure” thoughts because …

  • phpMyAdmin (off cPanel (logged in administratively)) will allow you to create the “Stored Procedures”
  • phpMyAdmin (off cPanel (logged in administratively)) will allow you to EXECUTE the copy and pasted “Stored Procedures” CALL (too)

As you can see here, the idea of a database (MySql) “user” can be a friend to your database “security” concerns, wouldn’t you say?


Previous relevant MySql Stored Procedures Spatial Tutorial is shown below.

MySql Stored Procedures Spatial Tutorial

MySql Stored Procedures Spatial Tutorial

Back when we wrote MySql Stored Procedures Primer Tutorial we wrote it more or less to use …

  • PHP 5 and its …
  • mysql_connect()

… MySql database connection logic, but today we have a dual (even trial) purpose in mind (… or “out of mind” if you were naughty and picked some of those mushrooms out and about at the moment (ie. please don’t)) for today’s revisit.

  • get with the plan of using PHP 7 (as we do with our local MAMP Apache/PHP/MySql web server here) along with mysqli_connect … and …
  • start you thinking about MySql’s excellent Spatial Convenience Functions, such as st_distance_sphere() function to determine (in metres) crow fly distances between points (longitude, latitude) on Earth … and …
  • verify that MySql Stored Procedures haven’t changed as far as arrangements go with all this

So, here is some downloadable PHP programming source code which shows the results of the MySql SQL requests made and can be renamed to the changed ourmysqlstoredprocedure.php as required.

And here is some downloadable supervisory PHP programming source code which gathers the MySql SQL requests made and can be renamed to the changed ourmysql_storedprocedure.php as required.

A tad trepidatiously we also offer you today’s live run link that we explain more about regarding restrictiveness and its allowances, tomorrow.

You can also see this play out at WordPress 4.1.1’s MySql Stored Procedures Primer Tutorial.


Previous relevant MySql Stored Procedures Primer Tutorial is shown below.

MySql Stored Procedures Primer Tutorial

MySql Stored Procedures Primer Tutorial

Today’s tutorial follows up on phpMyAdmin interface to MySql and PHP Primer Tutorial in that we again use the brilliant phpMyAdmin to oversee the results of some PHP code which uses MySql calls to create tables called POINT and CIRCLE used to store information defining a circle, and then it creates three MySql stored procedures in the database to help add circle data with the single MySql statement that goes CALL AddCircle(x, y, radius); via the use of those stored procedures. Let’s see below what Wikipedia says about Stored Procedures generally.

A stored procedure is a subroutine available to applications that access a relational database system. A stored procedure (sometimes called a proc, sproc, StoPro, StoredProc, sp or SP) is actually stored in the database data dictionary.

Typical use for stored procedures include data validation (integrated into the database) or access control mechanisms. Furthermore, stored procedures can consolidate and centralize logic that was originally implemented in applications. Extensive or complex processing that requires execution of several SQL statements is moved into stored procedures, and all applications call the procedures. One can use nested stored procedures by executing one stored procedure from within another.

Stored procedures are similar to user-defined functions (UDFs). The major difference is that UDFs can be used like any other expression within SQL statements, whereas stored procedures must be invoked using the CALL statement.[1]

Here is some downloadable PHP programming source code which shows the results of the MySql SQL requests made and can be renamed to ourmysqlstoredprocedure.php as required.

Here is some downloadable supervisory PHP programming source code which gathers the MySql SQL requests made and can be renamed to ourmysql_storedprocedure.php as required.

If you want to develop your own live usage (have provided a live usage link here which will not work but you can use if you are a beginner, to get used to mysql errors, which will occur after you hit either button of the link (these errors indicate bad MySql connection details which are the same reason the database dropdown is not full of options), or you can use this link to see the raw MySql SQL involved in piecing this tutorial together) of these two PHP source codes then you could fix up the hard codings for MySql host/username/password up the top of ourmysql_storeprocedure.php (where you may notice that the default host in the code is localhost:8889 which is the default host string for MySql (ie. port 8889 is used) when using a MAMP (Mac laptop) local web server (which uses localhost:8888 as its local “domain name” for http usage)) or you can keep the same code and use a URL like:

[your-domain-name-plus-a-bit-maybe]/ourmysql_storeprocedure.php?host=[your MySql host address]&username=[your MySql username]&password=[your MySql password]&database=[your optional MySql default database name within the looked up list presented]


Previous phpMyAdmin interface to MySql and PHP Primer Tutorial is relevant and shown below.

phpMyAdmin interface to MySql and PHP Primer Tutorial

phpMyAdmin interface to MySql and PHP Primer Tutorial

Transcript:

You never hear much about the data when you hear about great PHP products, but we
all know it is the data that differentiates the quality of the end result.

That is probably because database products like MySql, SqlServer, Oracle SQL, Advantage and Access
are pretty good at what they do, and emphasise reliability rather than flashiness.

MySql and PHP have a great open source interface with phpMyAdmin, which is so good,
you forget that it is not the default MySql administrator’s interface product.

Let’s have a look at this WordPress database and a bit of how it looks, looking
through the prism of phpMyAdmin

If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.


If this was interesting you may be interested in this too.

This entry was posted in Database, eLearning, Tutorials and tagged , , , , , , , , , , , , , , , , , , , , , , , , , , , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>