Archive

Posts Tagged ‘plot’

Set Up A Map On WordPress

May 25th, 2011 Comments off

Hello,

I’m driving across my province today to test and expand a WordPress site functionality.

I need to plot my coordinates on a map as I drive across the province. I don’t want the coordinates joined together with lines but just plotted. I will be uploading where ever I can find hotspots.

I will need to use three types of plotting markers for the scenario in my mind.

I need someone to embed/configure a map within my wordpress blog so I can plot this journey from my mobile phone. Everything is ready on my end with the mobile uploads and posting to WordPress. I haven’t tested the geotagging feature yet and this project is for that purpose.

It is a hypothetical scenario and a fun project.

There is no worries about getting everything perfect. I just want to test and configure/troubleshoot a geotagging map system live today with a programmer while I drive a 1000 km within the next 24 hours and plot my journey.

Your part involves:

1. Embedding a map into my WordPress site or using the one already there.
2. Creating nice icons as we go to plot and develop a nice looking tourism map.
3. Helping me if I can’t get the geotagging working. ( I haven’t tried yet)

I will be communicating with you through either texting or Scriptance message board.

I need someone to start testing asap.

Who wants to have some fun and get paid at the same time :)

Get Paid To Have Fun

May 25th, 2011 Comments off

Hello,

I’m driving across my province today to test and expand a WordPress site functionality.

I need to plot my coordinates on a map as I drive across the province. I don’t want the coordinates joined together with lines but just plotted. I will be uploading where ever I can find hotspots.

I will need to use three types of plotting markers for the scenario in my mind.

I need someone to embed/configure a map within my wordpress blog so I can plot this journey from my mobile phone. Everything is ready on my end with the mobile uploads and posting to WordPress. I haven’t tested the geotagging feature yet and this project is for that purpose.

It is a hypothetical scenario and a fun project.

There is no worries about getting everything perfect. I just want to test and configure/troubleshoot a geotagging map system live today with a programmer while I drive a 1000 km within the next 24 hours and plot my journey.

Your part involves:

1. Embedding a map into my WordPress site or using the one already there.
2. Creating nice icons as we go to plot and develop a nice looking tourism map.
3. Helping me if I can’t get the geotagging working. ( I haven’t tried yet)

I will be communicating with you through either texting or Scriptance message board.

I need someone to start testing asap.

Who wants to have some fun and get paid at the same time :)

Simple Website For Land Sale

October 22nd, 2009 Comments off

Hello,

I am looking to market one plot of land one of our clients has and want to dedicated a webpage to it. A logo of the name of the plot of land also has to be created.

Site only has to be 2or 3 pages max as there really isn’t much to put in it. Just a description of the plot and some pictures. Maybe a description of the surrounding area as well.

Quick and easy job for anyone interested.

Simple Java – Problem Solving

September 22nd, 2009 Comments off

The program Lab1.java can automatically test a sorting algorithm, that can be specified by a command line argument:

java Lab1 quicksort

(the other possibilities for command line argument the program understands are insertionsort and mergesort)

In order to run this program you need to download lab1.zip and compile all the classes.

The program generates 5 random arrays of each size 500, 1000, 1500, …, 10000 and records the average execution time for each size. The partial results and the averages are printed to the screeen and to a file NameOfAlgorithm.dat (this file has most of the lines commented away for the program gnuplot you will be using. The only interesting lines are the ones registering the averages.)

You can warm up for the lab by using Lab1 as above and then plotting the results with gnuplot:

Start gnuplot by choosing gnuplot from the programs menu. It starts a window where you can give commands to gnuplot. To exit just type exit.
Go to the directory where your data files are by typing

gnuplot> cd ‘dirname’
Plot the datafiles by typing
gnuplot> plot “QuickSort.dat” with lines

This will make gnuplot go fullscreen. To return to normal mode press the ESC key and then do Alt-Enter.

1)
Define a class Experiment.java with a little main to test QuickSort for big arrays. Your program should run QuickSort for sizes 50000, 100000, 200000, 400000, 800000. You will then get in the file QuickSort.dat values for T(50000), T(100000), T(200000), T(400000), T(800000). You should find out what approximation of O(N), O(N log(N)), O(N^2) fits your experiments better. This can be done by calculating T(N)/N, T(N)/Nlog(N), T(N)/N^2 for the given sizes and examining which one converges better.

Your class Experiment should extend Lab1 so that in your main you can use all the protected fields and methods (you only have to redefine main!)

2)
In this exercise you will use Lab1.java as it is to get values for Insertion Sort, Merge Sort and Quick Sort (you will have to run the program three times, once for each algorithm).

a)Plot each of the files QuickSort.dat, MergeSort.dat and InsertionSort.dat using gnuplot as indicated above

b)Plot merge and quick sort together doing
gnuplot> plot “QuickSort.dat” with lines, “MergeSort.dat” with lines

c)Plot all three experiments together doing
gnuplot> plot “QuickSort.dat” with lines, “MergeSort.dat” with lines, “InsertionSort.dat”

3)
Predict what the best case for insertion sort is (by analyzing the algorithm). Program an experiment to explore the execution time for insertion sort for its best case and report the results. Does the experimet confirm your prediction?

Submission:

Submission should have the following attachments:
(For Exercise 1)
Your Experiment.java
a text file including your calculations (please, an ascii file!)
your conclusion as to what curve approximates execution time best

(For Exercise 2) The files “QuickSort.dat”, “MergeSort.dat”, and “InsertionSort.dat”. Include also a text file explaining what you see in all the plots.

(For Exercise 3) The program and the conclusions you can draw on O(F(N)) for your data..

Categories: Java Tags: , , , , , ,

Java Jogl Simple 3d Plot

September 20th, 2009 Comments off

Ok, what we need is a Java Application which uses JOGL (Java open gl) which just shows a 3d graph of a hardcoded function, dependent on xyz.(trianglestrips preferred)

The left and right keys should rotate the graph around the Y axes.

This project is pretty urgent (~12hours)

Thanks

Java Opengl Small 3d Plot

September 20th, 2009 Comments off

Ok, what we need is a Java Application which uses JOGL (Java open gl) which just shows a 3d graph of a hardcoded function, dependent on xyz.(trianglestrips preferred)

The left and right cursor should rotate the graph around the Y axes.

This must be finished within the next 12 hours!

Thanks

The Convex Hull Formula

September 5th, 2009 Comments off

My ultimate goal is to plot tessellating shapes on Google Map.

To achieve this I have a database consisting of 2 tables.

Table A has 50 records, with 4 columns (id, name, latitude, longitude). These entries form my centres of interest, and are the main points to be plotted on Google Map.

Table B has thousands of records, with 4 columns (id, name, latitude, longitude). This are my secondary points of interest that need plotting on Google Map.

For each entry in table A, I need to find the 100 closest (Miles), entries from table B. These results are going to form my shapes on Google Map.
Results within each shape (ie entries from table B), cannot be duplicated, they must all be unique.
I need to know the id and lat/lng of each result, so perhaps the results can be inserted into another table?
Once I have my 100 results, I want to know the boundaries, so I believe I have to run them through the Convex Hull formula.
Again I want to know the id and lat/lng of these boundaries, so perhaps store these results in another table.

It’s these results of the boundaries I’ll plot on Google Map.

Records are continually being added to table B, but will not be taken into consideration until this script is run again.

I need to contain all the workings on the server, before I send/plot anything on Google Map.

This script will form a report that will need to be run on multiple occasions (max 10 a day).

Thinks that’s all ;-)

Vector Drawing House Flash Ani

April 27th, 2009 Comments off

Hi,

for a real estate website we need 2 new vector drawings created.

(1) Picture:

It should be a house, a multi-familiy-house (let’s say 3 floors, eg. 6 parties), european (german) style looking. We can provide example photos to get a better impression of the style.

The house should should sit on a plot, with green garden, a mower and a children slide, some plants and a tree. The plot downside should look like as someone would have taken it just recently out of the ground earth.

The plot eg. the base plate should be sliced into puzzle tiles. The idea behind is to sell later parts of the plot, so therefore we need the puzzle border lines.

(2) Picture:
Same as above, but the house should seeable hover over the plot to demonstrate that both plot and house – are seperated.

The place where the house was connected with the plot should look like earth. Imagine you just took off the house from the ground.

(3) Later on, we would like to animate these pictures with flash. On page load both pictures should shake a bit and then house lifts up from the plot and stays in the air. An explanation box with text and 2 arrows pointing on the house and the plot will appear.

What we need:

- the 2 pictures
- the flash animation for a website intro and/or header

Some examples are attached to show the kind of ideas we have. The style of the pictures should be of serious comic style, hope that I can make myself clear with saying that. Otherwise please ask!!

Please post me some exmaple graphics you already created totally by your own, I need to proof that you’re able to create own vector graphics. Because we will need futher graphics from you while the website grows…

Thanks!

PS: Please check www.consultingteam.de
For this new project we look for someone who can also create such figures in a simular style.

Vector Drawing House Flash Ani

April 3rd, 2009 Comments off

Hi,

for a real estate website we need 2 new vector picture created.

(1) Picture:

It should be a house, a multi-familiy-house (let’s say 3 floors, eg. 6 parties), european (german) style looking.

The house should should sit on a plot, with green garden, a mower and a children slide, some plants and a tree. The plot downside should look like as someone would have taken it just recently out of the ground earth.

The plot eg the base plate should be sliced into puzzle tiles. The idea behind is to sell later parts of the plot, so therefore we need the puzzle border lines.

(2) Picture:
Same as above, but the house should seeable hover over the plot to demonstrate that both plot and house – are seperated.

The place where the house was connected with the plot should look like earth. Imagine you just took off the house from the ground.

(3) Later on, we would like to animate these pictures with flash. On page load both pictures should shake a bit and then house lifts up from the plot and stays in the air. An explanation box with text and 2 arrows pointing on the house and the plot will appear.

What we need:

- the 2 pictures
- the flash animation for a website intro and/or header

Some examples are attached to show the kind of ideas we have. The style of the pictures should be of serious comic style, hope that I can make myself clear with saying that. Otherwise please ask!!

Please post me some exmaple graphics you already created totally by your own, I need to proof that you’re able to create own vector graphics. Because we will need futher graphics from you while the website grows…

Thanks!

Bear