Area is a quantity that expresses the extent of a two-dimensional surface or shape, or planar lamina, in the plane.

learn more… | top users | synonyms

0
votes
0answers
5 views

Area behind twitter bootstrap modal windows gets invalidated after dismiss

I'm facing a weird issue when using twitter bootstrap modal windows. Everything works ok when the size of the browser is desktop, the problem appears when the size of the browser is phone. Of course, ...
-1
votes
0answers
10 views

use google map to give me the size of a yard

I thought I would try to create a google map to help me create lawn estimates for my business. How do I do the following? Locate the property by address draw a polygon calculate the area in sqft ...
0
votes
1answer
12 views

How to integrate line and area google chart in same chart

I need to make chart which have use same data and display line chart and area chart.How to composite line and area chart. This is the data ['Year', 'Sales', 'Expenses','Total'], ...
0
votes
1answer
27 views

Why isn't this d3 hexagon drawing correctly?

I have made a code to make a simple hexagon but for some reason it is not drawing correctly. I am using "A", xDiff and yDiff as variables so I can change the size and location of the hexagon on the ...
1
vote
2answers
42 views

how to convert longitude and altitude to a grid with equal(nearly) area on the Earth sphere in Matlab or C/C++?

The range of longitude and latitude of Earth sphere are [-180, 180] and [-90, 90] respectively. I want to get equal area grids by 0.5 deg * 0.5 deg (area around the equator). As the distortion ...
0
votes
3answers
55 views

Python Calculating the perimeter of a circle

I am working on an area calculator in python, and everything seems ok,...until I get to calculating the perimeter of a circle... Can anyone point me in the right direction? import math from math ...
0
votes
1answer
33 views

Border-radius and :hover state area issue

I'm looking everywhere to answer this question but nowhere can I find anything about it. Can anyone tell me whether we can affect the area which received the item hover border-radius property. So that ...
0
votes
1answer
21 views

Stuck with editing image maps in dreamweaver

Doing a big part of work around html image maps and suddenly I am not able to edit image maps: - when clicking on an image with map edit tool, it adds the first point, but then focus is lost and ...
0
votes
0answers
6 views

Change icon size in tray area

Good time for all programmers. Can you explain me how I can to resize my icon in trayicon area. http://prntscr.com/15647t like date time. It's a little bit longer than simple icon. Thanks for any ...
0
votes
0answers
25 views

How to define area of interest around words in a text converted to image

I need to convert notes from text to bmp image for an eye tracking study (preferably with python) I would like to define frames of area of interest around words automatically. I would like to ...
4
votes
1answer
78 views

Calculating the area of a confidence ellipse in a certain region of space

I was wondering if someone had an idea on how to calculate the blue shaded area inside my confidence ellipse. Any suggestions or places to look are greatly appreciated. Also, I am hoping to find a ...
0
votes
1answer
16 views

comment with no spaces will destroy my table comment

$display = mysql_query("SELECT * FROM table_comment WHERE blogid=$theID ORDER BY comment_id DESC")or die(mysql_error()); echo "<table border='0' align='center' width='900px' ...
0
votes
2answers
30 views

a width and height 100% and text still at the bottom right - possible?

I'm creating tiled nav and what I need is for a to fill the tile, but the text from a still be located at bottom right position. However, when I make it width:100% and height:100% (in relation to li), ...
0
votes
1answer
13 views

Area function of a power region with respect to weight

I was reading a paper about Capacity-Constrained Power Diagram, and came across a function written in the form of V(Si,Wi). V(Si,Wi) is the area of the size, Si is the position of the site and Wi is ...
0
votes
2answers
15 views

Loop through individual blocks within Concrete5

I have a Concrete5 template of which defines and outputs a content area: $a = new Area('Content'); $a->display($c); This outputs all the blocks within that content area, however what I want to ...
1
vote
1answer
32 views

D3.js AreaChart alignment issues

I'm in need of a little assistance. I have a stacked area chart in d3.js using ordinal for the x axis (and likely for the y as well but haven't implemented that yet) and while it's rendering, it's ...
2
votes
2answers
71 views

Android Create a rectangle within an image view

Hi i wanted to know how can I create a rectangle inside an imageview. As you can see in the image (http://i.stack.imgur.com/ZCpdT.png ) I need to create a rectangular internal and the external, this ...
-2
votes
0answers
19 views

Finding Area under curve drawn in java with help of JFreeChart [closed]

I hav drawn the curve Using XYSeries and XYPlot of JFreeChart. but now I want to Calculate the area that enclosed by my drawn curve. please do help me on this i serched but could not able to get ...
0
votes
4answers
52 views

Searching for duplicate values in a 2D array

I am figuring a method to search the duplicated parts in a 2D array. Taking the below array for example: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 ...
2
votes
0answers
110 views

How can I use javascript to write <map> and <area> html tags?

What I need to do is dynamically write area tags on to a map as they are added so that when I click on them they trigger a function. <img src="out.jpg" usemap="#mapmap"/> <map ...
-1
votes
0answers
33 views

How to add rectangle to line chart in javafx 2.1?

I would implement some feature where the user selects a rectangular region of data plotted in linechart. This selection must follow the data while panning and zooming. Finally, it should give access ...
1
vote
1answer
66 views

Counting polygons in shapefile

So I have multiple species ranges which look like the following (colored blue for example) This one runs east to west across Africa: I can get the total area by using gArea in the rgeos package. ...
0
votes
1answer
51 views

How to fill the area below a path in Quartz 2D?

I am using Quartz 2D in a UIView object to draw several curves, like this example: This is the code I have right now (I have omitted the calculation of control points and other stuff): for (int i ...
1
vote
0answers
56 views

Area Optimization

How can we we insert n small 2d plates with different size into one or more 2d plate with different size so that area optimization should be maximum.
0
votes
1answer
86 views

Map with hover area showing alt text in div - relative to hovered area

I'm trying to get a div to show with the alt text of the hovered area - positioned relative to the hovered area. I can get the text to show, but not in the right place. This is my js: ...
0
votes
1answer
42 views

Maximize Rectangle in an Area on the X, Y plane with a list of points representing the area

Okay, I need help maximizing the area of a rectangle in the sliver object that can be many different shapes. I've already done most of the work. I'm working in C# with a kinect and the depth pixels. ...
1
vote
1answer
91 views

JFreeChart select an area without zooming

I recently started using JFreeChart and there is something i would like to do but i'm not sure if it's possible. My program is supposed to draw a spectrogram (a sound graph) from a wav file. So i ...
0
votes
0answers
80 views

Monte Carlo integration in a function

So, my professor posed this problem to us: He wants us to use Monte Carlo integration to find the integral in the area under a curve of an arbitrary function. He told me it works the same way as Monte ...
0
votes
1answer
39 views

Complex Polygon Area

cloneList = Point[] (series of points put into constructor) I have tried so many different times to fix this formula, but am coming up wanting. The formula was found on ...
0
votes
0answers
62 views

How to use countourArea() in OpenCV C++

I am having difficulty making contourArea() to work with my code. I am trying to calculate the area of each circle that I have detected using canny followed by morphologyEx(Close) and then ...
0
votes
2answers
31 views

Average of Rectangle Area

I have to find the average sum of the areas of each rectangle. I can find the area of each rectangle, should I store each area into an array and find the average through that? or is that not possible? ...
1
vote
0answers
26 views

iOS: Ensure that an image has got no empty area after manual rotation

I have got an UIImageView in which the image can be rotated using UIRotationGestureRecognizer. Based on the UIImageView a frame in the middle of the screen is extracted from the image. For the ...
0
votes
0answers
26 views

image map onclick image display

I have created an image map and i need each area to display a small caption image when clicked. See the test here. My code: <img ...
0
votes
0answers
22 views

Map area multiple coordinates not working in IE or FF

I use following code for my map area, which works fine in Chrome but not in IE/FF. The problem is that only the first coordinate triggers the onmouseover but not the other coordinates.. <img ...
0
votes
2answers
173 views

D3.js streamgraph example - generating correct area function values

I'm new to d3js and trying to adapt the streamgraph example from here http://bl.ocks.org/mbostock/4060954 to work with my own data that tracks visitors to an art exhibition from different places ...
5
votes
2answers
129 views

Calculate the area of a quadrilateral

I'm trying to create a calculator which calculates the area of a simple quadrilateral. I know that every quadrilateral can be split into two triangles, and I should be able to calculate the area in ...
6
votes
4answers
186 views

Find largest area in 2d array in c++

I need to write recursive function in c++ that finds largest area of number '1' in 2d array that contains only 1 or 0. Example: int Arr[5][8] = { { 0, 0, 0, 0, 1, 1, 0, 0, }, { 1, 0, 0, 1, 1, 1, 0, ...
0
votes
0answers
41 views

Behavior inconsistency between AreaSpline and Area charts

This is an unresolved issue from version 2 and the old forum.Take following two samples, one is Area and one is AreaSpline both are quite similar except the chart type.The problem is that the edges of ...
0
votes
0answers
17 views

Firefox and Image map isn't working

Works in IE and Chrome, when I hover over the hotspots, not in FF. [Name/Tel's below is dummy data:)] Snippet: <p id="floatName" style="float:left; color: #b47825">&nbsp;</p> ...
0
votes
1answer
93 views

Highcharts 3.0, area chart with stacked and unstacked series - how to fix?

I have a complex area chart, which uses some stacked and some unstacked series. Prior to version 3, everything worked fine. With version 3, there are some odd buggy behaviors, in both firefox and ...
1
vote
2answers
39 views

How to define a tappable area defined by coordinates

I am writing a small iPad application that draws a shape from a list of coordinates. I would like to tap anywhere inside the shape and have some action occur (i.e. NSLog proving it worked). Does ...
0
votes
1answer
69 views

Mvc area routing?

Area folders look like : Areas Admin Controllers UserController BranchController AdminHomeController Project directories look like : Controller ...
2
votes
2answers
180 views

Matlab: Find area enclosed by points (x,y)

I've got 8 points that create the outline of an eight-sided polygon in two-dimensional space. I need to find the area enclosed be these points, but how do I do that using matlab? The eight points ...
1
vote
1answer
54 views

Mvc area routing?

My project structure: Controller AdminController HomeController After Area addition my project structureI added an Admin area to project, Areas Admin Controller ...
0
votes
1answer
93 views

Can Lightbox 2 work with an Image Map?

I am trying to use Lightbox 2 (ver 2.51) with an image map. The site is for a theme park, and the park map image has 8 areas, and each area should have its own slideshow. I tried using ...
1
vote
5answers
410 views

HTML Text area with custom user font size style and colour

How can I create a text area in html where the user can change font style, size and colour. I have spent about an hour searching to no avail. I can find simple text boxes where users can input data, ...
0
votes
4answers
46 views

How do I remove a specific area of element from an array

I'd like to remove a specific range of element form my array. I have a txt file: Rbody ... 333 444 555 666 END Shell ... Node ... Rbody ... 333 444 555 666 END What I would like to do is to ...
0
votes
1answer
82 views

Upgrading from ASP.NET MVC 3 to ASP.NET MVC 4 leads to 404 errors

I just upgraded ASP.NET MVC 3 to ASP.NET MVC 4 with .NET 4.5 and root controllers were working but controllers in MVC Area started giving 404 errors. I looked up for IIS 7 QFE patch, but it is not ...
3
votes
2answers
273 views

How do you make the area of hover in css larger

I have a list in html that I am formatting as a drop down menu in CSS, however, when I hover over, only the first half of the text is responding, as opposed to the entire length of it, and I can't ...
0
votes
1answer
52 views

Resize from the area I click

I'd like to know if it's possible to resize a content from the area I click instead of the top left default resize. For example here is my code http://jsfiddle.net/2drYk/29/ var $cont = ...

1 2 3 4 5 8